app/soc/templates/soc/user/list/row.html
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 22 Nov 2008 14:01:39 +0000
changeset 554 68c7a1dd3c52
parent 553 app/soc/templates/soc/user/list/user_row.html@c0cc20b4afc9
child 2284 e7bb719e2539
permissions -rw-r--r--
Renamed templates/soc/entity/list/entity_*.html to *.html This makes it possible to generalize list template positions. Patch by: Sverre Rabbelier
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
186
da76f08b1752 Add Users List Developer view which is available at /site/user/list. Add User list custom templates which are used with list_helpers. Add "Users List" link in base.html template.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff changeset
     1
<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'" 
553
c0cc20b4afc9 Make redirect generic using the new Lists object
Sverre Rabbelier <srabbelier@gmail.com>
parents: 546
diff changeset
     2
onclick="document.location.href='{{ list.redirect }}'" name="name">
481
94834a1e6c01 Attempt to rename User.id to User.account, in preparation for making User be
Todd Larsen <tlarsen@google.com>
parents: 445
diff changeset
     3
  <td align="right"><div class="account"><a class="noul"
553
c0cc20b4afc9 Make redirect generic using the new Lists object
Sverre Rabbelier <srabbelier@gmail.com>
parents: 546
diff changeset
     4
         href="{{ list.redirect }}">{{ list.item.account }}</a>
186
da76f08b1752 Add Users List Developer view which is available at /site/user/list. Add User list custom templates which are used with list_helpers. Add "Users List" link in base.html template.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff changeset
     5
     </div>
da76f08b1752 Add Users List Developer view which is available at /site/user/list. Add User list custom templates which are used with list_helpers. Add "Users List" link in base.html template.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff changeset
     6
  </td>
539
e30462354e26 Allow for multiple list objects
Sverre Rabbelier <srabbelier@gmail.com>
parents: 529
diff changeset
     7
  <td><div class="email">{{ list.item.account.email }}</a></div></td>
546
850d9a5ad894 Rename the User.public_name Property to simply 'name' (but leave the verbose
Todd Larsen <tlarsen@google.com>
parents: 539
diff changeset
     8
  <td><div class="name">{{ list.item.name }}</div></td>
539
e30462354e26 Allow for multiple list objects
Sverre Rabbelier <srabbelier@gmail.com>
parents: 529
diff changeset
     9
  <td><div class="link_id">{{ list.item.link_id }}</div></td>
186
da76f08b1752 Add Users List Developer view which is available at /site/user/list. Add User list custom templates which are used with list_helpers. Add "Users List" link in base.html template.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff changeset
    10
</tr>