Files @ 70d013e42f96
Branch filter:

Location: CSY/sefm2020/themes/bootstrap3/templates/includes/translations.html

Benjamin Lion
Add best paper award to the news; cross the date for the conference.
1
2
3
4
5
6
7
8
{% macro translations_for(article) %}
{% if article.translations %}
<span class="label label-default">{{ _('Lang') }}</span>
{% for translation in article.translations %}
	<a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>
{% endfor %}
{% endif %}
{% endmacro %}