app/soc/templates/soc/priority_group/list/row.html
changeset 2208 1bf4e904d5f5
child 2284 e7bb719e2539
equal deleted inserted replaced
2207:f283f7b99427 2208:1bf4e904d5f5
       
     1 <tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'"
       
     2 onclick="document.location.href='{{ list.redirect }}'" name="name">
       
     3   <td align="right">
       
     4    <div class="link_id">
       
     5     <a class="noul"
       
     6      href="{{ list.redirect }}">{{ list.item.link_id }}</a>
       
     7    </div>
       
     8   </td>
       
     9   <td><div class="name">{{ list.item.name }}</div></td>
       
    10   <td><div class="priority">
       
    11     {% if not list.item.priority %}disabled{% else %}{{ list.item.priority }}{% endif %}
       
    12   </div></td>
       
    13 </tr>