app/soc/templates/soc/user/list/user_row.html
author Todd Larsen <tlarsen@google.com>
Fri, 21 Nov 2008 07:07:55 +0000
changeset 529 7c5ec72cdcf1
parent 512 aae25d2b4464
child 539 e30462354e26
permissions -rw-r--r--
Replace nick_name and its variants with public_name. Remove the soc/templates/soc/person/edit.html template, since it does not appear to be referenced anywhere (and contained a nick_name reference that would otherwise need to be remedied). Patch by: Todd Larsen
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'" 
512
aae25d2b4464 Rename link_name to link_id everywhere, regardless of case (so LINK_NAME
Todd Larsen <tlarsen@google.com>
parents: 502
diff changeset
     2
onclick="document.location.href='{{redirect_action|lower}}/{{ data_element.link_id }}'" 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"
512
aae25d2b4464 Rename link_name to link_id everywhere, regardless of case (so LINK_NAME
Todd Larsen <tlarsen@google.com>
parents: 502
diff changeset
     4
         href="{{redirect_action|lower}}/{{ data_element.link_id }}">{{ 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>
529
7c5ec72cdcf1 Replace nick_name and its variants with public_name. Remove the
Todd Larsen <tlarsen@google.com>
parents: 512
diff changeset
     8
  <td><div class="public_name">{{ data_element.public_name }}</div></td>
512
aae25d2b4464 Rename link_name to link_id everywhere, regardless of case (so LINK_NAME
Todd Larsen <tlarsen@google.com>
parents: 502
diff changeset
     9
  <td><div class="link_id">{{ data_element.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>