summaryrefslogtreecommitdiff
path: root/objectapp/templates/objectapp/tags/recent_gbobjects.html
diff options
context:
space:
mode:
Diffstat (limited to 'objectapp/templates/objectapp/tags/recent_gbobjects.html')
-rw-r--r--objectapp/templates/objectapp/tags/recent_gbobjects.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/objectapp/templates/objectapp/tags/recent_gbobjects.html b/objectapp/templates/objectapp/tags/recent_gbobjects.html
new file mode 100644
index 0000000..9e9c924
--- /dev/null
+++ b/objectapp/templates/objectapp/tags/recent_gbobjects.html
@@ -0,0 +1,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>