app/soc/templates/soc/request/list/row.html
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 22 Nov 2008 21:33:54 +0000
changeset 566 858e02fbbb97
parent 562 1bf2beedda03
child 918 295c0d4f6d98
permissions -rw-r--r--
Disabled 'Home Settings' menu until we have a use for it Also fixed a typo in the request row template that caused it to display the wrong value. Patch by: Sverre Rabbelier

<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'" 
onclick="document.location.href='{{ list.redirect }}'" name="name">
  <td align="right"><div class="user_link_id"><a class="noul"
         href="{{ list.redirect }}">{{ list.item.link_id }}</a>
     </div>
  </td>
  <td><div class="role">{{ list.item.role }}</div></td>
  <td><div class="to">{{ list.item.scope_path }}</div></td>
  <td><div class="group_accepted">{{ list.item.group_accepted }}</div></td>
  <td><div class="user_accepted">{{ list.item.user_accepted }}</div></td>
</tr>