app/soc/templates/soc/user/list/user_row.html
author Sverre Rabbelier <srabbelier@gmail.com>
Sun, 16 Nov 2008 23:04:48 +0000
changeset 495 87afae6e4c51
parent 481 94834a1e6c01
child 502 e1e24c0a4e82
permissions -rw-r--r--
Added basic 'invite' functionality Currently the invite can only be created, existing ones can be listed and edited, or deleted if desired.
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'" 
495
87afae6e4c51 Added basic 'invite' functionality
Sverre Rabbelier <srabbelier@gmail.com>
parents: 481
diff changeset
     2
onclick="document.location.href='/{{redirect_action|lower}}/{{ data_element.link_name }}'" 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"
495
87afae6e4c51 Added basic 'invite' functionality
Sverre Rabbelier <srabbelier@gmail.com>
parents: 481
diff changeset
     4
         href="/{{redirect_action|lower}}/{{ data_element.link_name }}">{{ data_element.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>
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
     7
  <td><div class="email">{{ data_element.account.email }}</a></div></td>
330
2ef48e962655 Add underscore in two word div class names in templates (nick_name, short_name, partial_path).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 298
diff changeset
     8
  <td><div class="nick_name">{{ data_element.nick_name }}</div></td>
298
c76a366c7ab4 Replace almost all occurences of linkname with link_name
Sverre Rabbelier <srabbelier@gmail.com>
parents: 186
diff changeset
     9
  <td><div class="link_name">{{ data_element.link_name }}</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>