소스 검색

Sort translations list in alphabetical order

Talha Mansoor 11 년 전
부모
커밋
206f162590
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      templates/_includes/translations.html

+ 1 - 1
templates/_includes/translations.html

@@ -2,7 +2,7 @@
 {% if article.translations %}
 <p id="list-of-translations">
 This post is also available in:
-    {% for translation in article.translations %}
+    {% for translation in article.translations|sort(attribute = 'lang') %}
     <a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>{% if loop.index0 + 2 == loop.length %} and{% elif not loop.last %}, {% endif %}
     {% endfor %}
 </p>