combo/combo/apps/fargo/templates/combo/fargo/recent-documents-cell.html

16 lines
413 B
HTML

{% load i18n %}
{% block cell-content %}
<div class="recent-documents links-list">
<h2>{% trans 'Recent Documents' %}</h2>
{% if results %}
<ul>
{% for object in results %}
<li><a href="{{object.url}}">{{object.label}}</a></li>
{% endfor %}
</ul>
{% else %}
<p>{% trans "You don't have any recent document." %}</p>
{% endif %}
</div>
{% endblock %}