3 {% for control in controls %}
\r
4 <span class="action-link">
\r
5 <a title="{{ control.title }}" class="{% if control.command %}ajax-command{% endif %}{% if control.withprompt %} withprompt{% endif %}"
\r
6 href="{{ control.url }}">{{ control.text }}</a>
\r
8 {% ifnotequal controls|last control %}
\r
9 <span class="action-link-separator">|</span>
\r
12 {% if menu|length %}
\r
13 | <span id="node-{{ node.id }}-menu" class="context-menu">
\r
14 <span id="node-{{ node.id }}-menu-trigger" class="context-menu-trigger">{% trans "more" %} ▼</span>
\r
15 <ul id="node-{{ node.id }}-menu-dropdown" class="context-menu-dropdown">
\r
16 {% for item in menu %}
\r
17 <li class="item"><a class="{% if item.command %}ajax-command{% endif %}{% if item.withprompt %} withprompt{% endif %}"
\r
18 href="{{ item.url }}" title="{{ item.title }}" >{{ item.text }}</a></li>
\r