app/soc/templates/soc/job/list/row.html
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 18 Apr 2009 14:03:28 +0000
changeset 2209 989c7c945d5f
child 2284 e7bb719e2539
permissions -rw-r--r--
Add jobs (model, logic, and view) Jobs are the core of the Job system, allowing distributed processing of taks in an interuptable manner. 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>
</tr>