]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/skins/default/templates/node/post_controls.html
'show N more' comments rather than 'show all'
[osqa.git] / forum / skins / default / templates / node / post_controls.html
index 5b5fc8656d8b09a5870a34bf23724f420a5c642e..bbe1e22effa35c85664a322183ebbc9bc706b776 100644 (file)
@@ -1,11 +1,22 @@
+{% load i18n %}\r
 {% spaceless %}\r
 {% for control in controls %}\r
     <span class="action-link">\r
-        <a title="{{ control.title }}" {% if control.command %}class="ajax-command"{% endif %}\r
-            href="{{ control.url }}">{{ control.text }}</a>\r
+        <a rel="nofollow" title="{{ control.title }}" class="{{ control.classes }}" href="{{ control.url }}">{{ control.text }}</a>\r
     </span>\r
     {% ifnotequal controls|last control %}\r
         <span class="action-link-separator">|</span>\r
     {% endifnotequal %}\r
 {% endfor %}\r
+{% if menu|length %}\r
+    <span class="action-link-separator">|</span>\r
+    <span id="node-{{ post.id }}-menu" class="context-menu">\r
+        <span id="node-{{ post.id }}-menu-trigger" class="action-link context-menu-trigger">{% trans "more" %} &#9660;</span>\r
+        <ul id="node-{{ post.id }}-menu-dropdown" class="context-menu-dropdown">\r
+            {% for item in menu %}\r
+            <li class="item"><a rel="nofollow" class="{{ item.classes }}" href="{{ item.url }}" title="{{ item.title }}" >{{ item.text }}</a></li>\r
+            {% endfor %}\r
+        </ul>\r
+    </span>\r
+{% endif %}\r
 {% endspaceless %}
\ No newline at end of file