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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
257
878f9ec9dd07 Add group templates that can be used by Sponsor, Organization, School, Club views. Right now only upcoming commit of Sponsor views is using it.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff changeset
     1
<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'" 
539
e30462354e26 Allow for multiple list objects
Sverre Rabbelier <srabbelier@gmail.com>
parents: 512
diff changeset
     2
onclick="document.location.href='/{{ entity_type|lower }}/edit/{{ list.item.link_id }}'" name="name">
257
878f9ec9dd07 Add group templates that can be used by Sponsor, Organization, School, Club views. Right now only upcoming commit of Sponsor views is using it.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff changeset
     3
  <td align="right"><div class="name"><a class="noul"
539
e30462354e26 Allow for multiple list objects
Sverre Rabbelier <srabbelier@gmail.com>
parents: 512
diff changeset
     4
         href="/{{ entity_type|lower }}/edit/{{ list.item.link_id }}">{{ list.item.name }}</a>
257
878f9ec9dd07 Add group templates that can be used by Sponsor, Organization, School, Club views. Right now only upcoming commit of Sponsor views is using it.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff changeset
     5
     </div>
878f9ec9dd07 Add group templates that can be used by Sponsor, Organization, School, Club views. Right now only upcoming commit of Sponsor views is using it.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff changeset
     6
  </td>
539
e30462354e26 Allow for multiple list objects
Sverre Rabbelier <srabbelier@gmail.com>
parents: 512
diff changeset
     7
  <td><div class="link_id">{{ list.item.link_id }}</a></div></td>
e30462354e26 Allow for multiple list objects
Sverre Rabbelier <srabbelier@gmail.com>
parents: 512
diff changeset
     8
  <td><div class="short_name">{{ list.item.short_name }}</div></td>
257
878f9ec9dd07 Add group templates that can be used by Sponsor, Organization, School, Club views. Right now only upcoming commit of Sponsor views is using it.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff changeset
     9
</tr>