]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/node/post_controls.html
Some improvements in cache.
[osqa.git] / forum / skins / default / templates / node / post_controls.html
1 {% load i18n %}\r
2 {% spaceless %}\r
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
7     </span>\r
8     {% ifnotequal controls|last control %}\r
9         <span class="action-link-separator">|</span>\r
10     {% endifnotequal %}\r
11 {% endfor %}\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" %} &#9660;</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
19             {% endfor %}\r
20         </ul>\r
21     </span>\r
22 {% endif %}\r
23 {% endspaceless %}