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

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