Browse Source

use English as default language

master
j 7 years ago
parent
commit
40df76f089
  1. 2
      shared/utils/templates/utils/_text_list.html

2
shared/utils/templates/utils/_text_list.html

@ -3,7 +3,7 @@
{# Usage: {% include "utils/_text_list.html" with items=page.get_authors no_links=True %} #}
{% for item in items %}
{% if forloop.last and forloop.counter > 1 %}{% trans "und" %}{% endif %}
{% if forloop.last and forloop.counter > 1 %}{% trans "and" %}{% endif %}
{% with item.get_absolute_url as url %}
{% if url and not no_links %}<a href="{{ url }}">{% endif %}{{ item.name }}{% if url and not no_links %}</a>{% endif %}{% if not forloop.last %}{% if forloop.revcounter0 > 1 %},{% endif %}{% endif %}
{% endwith %}

Loading…
Cancel
Save