diff options
author | Yaroslsav-95 <contact@yaroslavps.com> | 2018-06-22 20:20:50 +0300 |
---|---|---|
committer | Yaroslsav-95 <contact@yaroslavps.com> | 2018-06-22 20:20:50 +0300 |
commit | 8fd79ffe610d4fce69913fd167d437322347c3d4 (patch) | |
tree | aff5144c6c04ca91f62dfeaa6fc9a9c9323248df /weblog | |
parent | 2f255efc8f662fa29e8112e6eb9642f33af25ad9 (diff) | |
download | w3blog-8fd79ffe610d4fce69913fd167d437322347c3d4.tar.gz w3blog-8fd79ffe610d4fce69913fd167d437322347c3d4.zip |
read post in another language (templates missing links)
Diffstat (limited to 'weblog')
-rwxr-xr-x | weblog/urls.py | 3 | ||||
-rwxr-xr-x | weblog/views.py | 8 |
2 files changed, 8 insertions, 3 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'),
+]
diff --git a/weblog/views.py b/weblog/views.py index e082d05..f28f201 100755 --- a/weblog/views.py +++ b/weblog/views.py @@ -153,7 +153,9 @@ def Index(request, **kwargs): return render(request, 'weblog/index.html', context_dict) -def PostView(request, category_slug, post_slug): +def PostView(request, category_slug, post_slug, language=None): + if language and not IS_MULTILINGUAL: + redirect('weblog:PostView', category_slug=category_slug, post_slug=post_slug) post = get_object_or_404(BlogPost, slug=post_slug) context_dict = blog_settings.copy() context_dict['comment_form'] = PostCommentForm() @@ -218,7 +220,9 @@ def PostView(request, category_slug, post_slug): context_dict['languages'] = [orig_lang,] for post_translation in post_translations: context_dict['languages'].append(post_translation.language) - if current_language[0:2] == post_translation.language[0:2]: + if language and language == post_translation.language[0:2]: + context_dict['post_translation'] = post_translation + elif current_language[0:2] == post_translation.language[0:2]: context_dict['post_translation'] = post_translation if 'post_translation' in context_dict: context_dict['breadcrumbs'].append({'url': post.get_absolute_url(), 'name': post_translation.title}) |