blob: b869dfd29245fba17abfcf68dc73dcd2f8c6c4ab (
plain) (
blame)
1
2
3
4
5
6
|
{% if article.translations %}
<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 %}
|