app/soc/templates/soc/list/list_main.html
changeset 185 2f3bd84bb106
child 539 e30462354e26
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/soc/templates/soc/list/list_main.html	Mon Sep 22 14:08:37 2008 +0000
@@ -0,0 +1,17 @@
+<div class="list">
+  {% include list_pagination %}
+
+  <table id="queues">
+    {% if not list_data %}
+      <tr><td colspan="9"><span class="disabled">(None)</span></td></tr>
+    {% else %}
+      {% include list_heading %}
+      {% for data_element in list_data %}
+        {% include list_row %}
+      {% endfor %}
+    {% endif %}
+  </table>
+
+  {% include list_pagination %}
+
+</div>
\ No newline at end of file