mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 19:33:11 +00:00
oubli du fichier urls
This commit is contained in:
parent
0d6a0db366
commit
f34d0a9a3f
1 changed files with 2 additions and 1 deletions
|
@ -47,13 +47,14 @@ from django.conf.urls import include, url
|
|||
from django.contrib import admin
|
||||
from django.contrib.auth import views as auth_views
|
||||
|
||||
from .views import index, about_page
|
||||
from .views import index, about_page, contact_page
|
||||
|
||||
handler500 = 're2o.views.handler500'
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^$', index, name='index'),
|
||||
url(r'^about/$', about_page, name='about'),
|
||||
url(r'^contact/$', contact_page, name='contact'),
|
||||
url('^logout/', auth_views.logout, {'next_page': '/'}),
|
||||
url('^', include('django.contrib.auth.urls')),
|
||||
url(r'^i18n/', include('django.conf.urls.i18n')),
|
||||
|
|
Loading…
Reference in a new issue