summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/tags/featured_nodetypes.html
blob: 5b7806b38f381050223509d677ddceddbb59677b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% load i18n %}
<ul>
  {% for nodetype in nodetypes %}
  <li>
    <a href="{{ nodetype.get_absolute_url }}" title="{{ nodetype.title }}" rel="bookmark">{{ nodetype.title }}</a>
  </li>
  {% empty %}
  <li>
    {% trans "No nodetypes yet." %}
  </li>
  {% endfor %}
</ul>