app/soc/templates/soc/priority_group/list/row.html
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 18 Apr 2009 14:02:56 +0000
changeset 2208 1bf4e904d5f5
child 2284 e7bb719e2539
permissions -rw-r--r--
Add priority groups (model, logic, and view) Priority groups will be a key part of the Job system, allowing the site admin to give a higher priority to certain job types on the fly. Patch by: Sverre Rabbelier

<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>