feed.html 587 B

12345678910111213141516
  1. {% load i18n %}
  2. <ul>
  3. {% if module.children %}
  4. {% for child in module.children %}
  5. <li>
  6. {% if child.date %}<span class="float-right dim">{{ child.date|date }}</span>{% endif %}
  7. {% if child.warning %}<span class="warning">{{ child.title }}</span>{% else %}<a href="{{ child.link }}" target="_blank" class="nowrap"><span class="icon-open-external"></span> {{ child.title }}</a>{% endif %}
  8. </li>
  9. {% endfor %}
  10. {% else %}
  11. <li>
  12. {% trans "Nothing to show" %}
  13. </li>
  14. {% endif %}
  15. </ul>