aboutsummaryrefslogtreecommitdiff
path: root/weblog/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'weblog/urls.py')
-rwxr-xr-xweblog/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/weblog/urls.py b/weblog/urls.py
index 643e8c7..71206bb 100755
--- a/weblog/urls.py
+++ b/weblog/urls.py
@@ -9,4 +9,5 @@ urlpatterns = [
url(r'^(?P<year>[0-9]{4})/(?P<month>[0-9]{1,2})/$', views.Index, name='ArchiveIndex'),
url(r'^(?P<category_slug>[-\w]+)/$', views.Index, name='CategoryIndex'),
url(r'^(?P<category_slug>[-\w]+)/(?P<post_slug>[-\w]+)/$', views.PostView, name='PostView'),
-] \ No newline at end of file
+ url(r'^(?P<category_slug>[-\w]+)/(?P<post_slug>[-\w]+)/(?P<language>[-\w]+)/$', views.PostView, name='TranslationView'),
+]