app/soc/templates/soc/group/list/group_row.html
author Sverre Rabbelier <srabbelier@gmail.com>
Fri, 21 Nov 2008 23:45:37 +0000
changeset 539 e30462354e26
parent 512 aae25d2b4464
child 553 c0cc20b4afc9
permissions -rw-r--r--
Allow for multiple list objects At the moment there's not really a practical use for it, since there is no way to make soc.views.models.base.View.list() show more than one list, but it shouldn't be too hard to allow for that. Patch by: Sverre Rabbelier

<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'" 
onclick="document.location.href='/{{ entity_type|lower }}/edit/{{ list.item.link_id }}'" name="name">
  <td align="right"><div class="name"><a class="noul"
         href="/{{ entity_type|lower }}/edit/{{ list.item.link_id }}">{{ 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>