app/soc/templates/soc/user/list/user_row.html
author Todd Larsen <tlarsen@google.com>
Sat, 22 Nov 2008 08:55:55 +0000
changeset 546 850d9a5ad894
parent 539 e30462354e26
child 553 c0cc20b4afc9
permissions -rw-r--r--
Rename the User.public_name Property to simply 'name' (but leave the verbose name as "Public name"). This is to take advantage of standardizing on 'name' in the common edit template (and possibly other common templates). The Property was renamed because public_name was already a "name", unlike the recent change to the Work Model class, where 'title' was "aliases" using a tiny name() method instead. Patch by: Todd Larsen

<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'" 
onclick="document.location.href='{{redirect_action|lower}}/{{ list.item.link_id }}'" name="name">
  <td align="right"><div class="account"><a class="noul"
         href="{{redirect_action|lower}}/{{ list.item.link_id }}">{{ list.item.account }}</a>
     </div>
  </td>
  <td><div class="email">{{ list.item.account.email }}</a></div></td>
  <td><div class="name">{{ list.item.name }}</div></td>
  <td><div class="link_id">{{ list.item.link_id }}</div></td>
</tr>