app/soc/templates/soc/request/list/row.html
author Lennard de Rijk <ljvderijk@gmail.com>
Fri, 23 Jan 2009 17:07:54 +0000
changeset 928 df051fc9d7a1
parent 918 295c0d4f6d98
child 947 67b41a13587a
permissions -rw-r--r--
Replaced the boolean properties in soc/models/request.py with a state property. new : new Request group_accepted : The group has accepted this request completed : This request has been handled either following a creation of the role entity rejected : This request has been rejected by either the user or the group ignored : The request has been ignored by the group and will not give the user access to create the role Patch by: Lennard de Rijk Reviewed by: to-be-reviewed

<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_verbose }}</div></td>
  <td><div class="to">{{ list.item.scope_path }}</div></td>
  <td><div class="state">{{ list.item.state }}</div></td>
</tr>