app/soc/templates/soc/priority_group/list/row.html
changeset 2208 1bf4e904d5f5
child 2284 e7bb719e2539
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/soc/templates/soc/priority_group/list/row.html	Sat Apr 18 14:02:56 2009 +0000
@@ -0,0 +1,13 @@
+<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'"
+onclick="document.location.href='{{ list.redirect }}'" name="name">
+  <td align="right">
+   <div class="link_id">
+    <a class="noul"
+     href="{{ list.redirect }}">{{ list.item.link_id }}</a>
+   </div>
+  </td>
+  <td><div class="name">{{ list.item.name }}</div></td>
+  <td><div class="priority">
+    {% if not list.item.priority %}disabled{% else %}{{ list.item.priority }}{% endif %}
+  </div></td>
+</tr>