app/soc/templates/soc/club_app/list/row.html
author Lennard de Rijk <ljvderijk@gmail.com>
Wed, 21 Jan 2009 18:50:22 +0000
changeset 881 1ad41c8d05e9
parent 791 30da180c4bca
child 2284 e7bb719e2539
permissions -rw-r--r--
Added created and last modified timestamps to the group_app model. Also edited the templates to show some extra information. The review template has the names for the new properties hard coded because the auto_add and auto_add_now datetimeproperties don't show up in the fields of the entity. Patch by: Lennard de Rijk
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
791
30da180c4bca Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     1
<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'" 
30da180c4bca Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     2
onclick="document.location.href='{{ list.redirect }}'" name="name">
30da180c4bca Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     3
  <td align="right"><div class="name"><a class="noul"
30da180c4bca Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     4
         href="{{ list.redirect }}">{{ list.item.name }}</a>
30da180c4bca Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     5
     </div>
30da180c4bca Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     6
  </td>
30da180c4bca Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     7
  <td><div class="link_id">{{ list.item.link_id }}</a></div></td>
881
1ad41c8d05e9 Added created and last modified timestamps to the group_app model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 791
diff changeset
     8
  <td><div class="date">{{ list.item.last_modified_on }}</a></div></td>
791
30da180c4bca Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     9
</tr>