url structure fix ungleich
This commit is contained in:
parent
74ca696bfc
commit
c57db296aa
3 changed files with 3 additions and 5 deletions
|
|
@ -2,8 +2,7 @@ from django.conf.urls import url
|
|||
from .views import ContactView, LandingView
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
url(_(r'contact/?$'), ContactView.as_view(), name='contact'),
|
||||
url(r'', LandingView.as_view(), name='landing'),
|
||||
url(_(r'contact/$'), ContactView.as_view(), name='contact'),
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue