aboutsummaryrefslogtreecommitdiff
path: root/weblog/templates
diff options
context:
space:
mode:
authorYaroslav de la Peña Smirnov <contact@yaroslavps.com>2018-07-15 02:39:43 +0300
committerYaroslav de la Peña Smirnov <contact@yaroslavps.com>2018-07-15 02:39:43 +0300
commitc9d2bbeea44a9e691ba214d0be8566fe0d59fd77 (patch)
tree51dbe4df410e219b1b0e295163d543da6d4930ce /weblog/templates
parentc9832e71790c7d93fcf3c512de8327dda3748e70 (diff)
downloadw3blog-c9d2bbeea44a9e691ba214d0be8566fe0d59fd77.tar.gz
w3blog-c9d2bbeea44a9e691ba214d0be8566fe0d59fd77.zip
languages list in post view
Diffstat (limited to 'weblog/templates')
-rwxr-xr-xweblog/templates/weblog/post.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/weblog/templates/weblog/post.html b/weblog/templates/weblog/post.html
index d602223..5a389f8 100755
--- a/weblog/templates/weblog/post.html
+++ b/weblog/templates/weblog/post.html
@@ -5,6 +5,18 @@
<div class="container-fluid blogpost">
<h2>{% if post_translation %}{{ post_translation.title }}{% else %}{{ post.title }}{% endif %}</h2>
<p class="publish-info">{% blocktrans with publish_date=post.publish_date %}Published on {{ publish_date }}{% endblocktrans %}{% if post_author %}{% blocktrans with author=post_author context 'Written by (Author)' %}, by {{ author }}{% endblocktrans %}{% endif %}</p>
+ {% if languages %}
+ <form>
+ <div class="form-group">
+ <label for="post-languages">{% trans 'Read in another language' %}</label>
+ <select class="form-control" id="post-languages" name="post-language">
+ {% for lang in post_languages %}
+ <option value="{{ lang[0] }}">{{ lang[1] }}</option>
+ {% endfor %}
+ </select>
+ </div>
+ </form>
+ {% endif %}
<hr>
{% if post_translation %}
{{ post_translation.content|safe }}