blob: 9e9c9247fa32d751d568cc4d1adbfe3a34a19c7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% load i18n %}
<ul>
{% for gbobject in gbobjects %}
<li>
<a href="{{ gbobject.get_absolute_url }}" title="{{ gbobject.title }}" rel="bookmark">{{ gbobject.title }}</a>
</li>
{% empty %}
<li>
{% trans "No gbobjects yet." %}
</li>
{% endfor %}
</ul>
|