debian-django-admin-tools/admin_tools/dashboard/templates/dashboard/modules/feed.html

14 lines
418 B
HTML

{% extends "dashboard/module.html" %}
{% block module_content %}
<ul>
{% spaceless %}
{% for entry in module.entries %}
<li class="{% cycle 'odd' 'even' %}">
{% if entry.date %}<span class="float-right">{{ entry.date|date }}&nbsp;</span>{% endif %}
<a class="external-link" href="{{ entry.url }}">{{ entry.title }}</a>
</li>
{% endfor %}
{% endspaceless %}
</ul>
{% endblock %}