diff options
Diffstat (limited to 'bootstrap2/templates/translations.html')
-rw-r--r-- | bootstrap2/templates/translations.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bootstrap2/templates/translations.html b/bootstrap2/templates/translations.html index 0079883..b869dfd 100644 --- a/bootstrap2/templates/translations.html +++ b/bootstrap2/templates/translations.html @@ -1,6 +1,6 @@ {% if article.translations %} -Translations: - {% for translation in article.translations %} - <a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a> - {% endfor %} +<span class="label label-important">Lang</span> +{% for translation in article.translations %} + <a href="{{ SITEURL }}/{{ translation.url }}" class="btn btn-danger xsmall">{{ translation.lang }}</a> +{% endfor %} {% endif %} |