app/soc/templates/soc/group/list/group_row.html
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 22 Nov 2008 13:59:34 +0000
changeset 553 c0cc20b4afc9
parent 539 e30462354e26
permissions -rw-r--r--
Make redirect generic using the new Lists object This makes it possible (and easier) to have the list view redirect to any page specially tailored to the current item. 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="name"><a class="noul"
         href="{{ list.redirect }}">{{ list.item.name }}</a>
     </div>
  </td>
  <td><div class="link_id">{{ list.item.link_id }}</a></div></td>
  <td><div class="short_name">{{ list.item.short_name }}</div></td>
</tr>