Added translation support for ungleich contact page,

This commit is contained in:
Levi 2016-04-12 00:50:15 -05:00
commit c5e5640e8d
6 changed files with 41 additions and 6 deletions

View file

@ -1,6 +1,8 @@
from django.conf.urls import url
from .views import ContactView
from django.utils.translation import ugettext_lazy as _
urlpatterns = [
url(r'contact/?$', ContactView.as_view(), name='contact'),
url(_(r'contact/?$'), ContactView.as_view(), name='contact'),
]