app/soc/templates/soc/request/list/row.html
author Sverre Rabbelier <srabbelier@gmail.com>
Fri, 20 Mar 2009 22:00:14 +0000
changeset 1965 a0eb42b003c1
parent 1686 d9cc9f8ca19f
child 2284 e7bb719e2539
permissions -rw-r--r--
Requests now link to a user's profile Patch by: Sverre Rabbelier
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1965
a0eb42b003c1 Requests now link to a user's profile
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1686
diff changeset
     1
{% load forms_helpers %}
a0eb42b003c1 Requests now link to a user's profile
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1686
diff changeset
     2
495
87afae6e4c51 Added basic 'invite' functionality
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     3
<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'" 
553
c0cc20b4afc9 Make redirect generic using the new Lists object
Sverre Rabbelier <srabbelier@gmail.com>
parents: 539
diff changeset
     4
onclick="document.location.href='{{ list.redirect }}'" name="name">
1965
a0eb42b003c1 Requests now link to a user's profile
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1686
diff changeset
     5
  <td align="right"><div class="role"><a class="noul"
a0eb42b003c1 Requests now link to a user's profile
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1686
diff changeset
     6
         href="{{ list.redirect }}">{{ list.item.role_verbose }}</a>
495
87afae6e4c51 Added basic 'invite' functionality
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     7
     </div>
87afae6e4c51 Added basic 'invite' functionality
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     8
  </td>
1965
a0eb42b003c1 Requests now link to a user's profile
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1686
diff changeset
     9
  <td><div class="user_link_id">{% as_user list.item.link_id %}</div></td>
947
67b41a13587a Rename soc/request/list/row.html template column class "to" to "for" since the name changed in header template.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 928
diff changeset
    10
  <td><div class="for">{{ list.item.scope_path }}</div></td>
1085
0afbdd0905ef Renamed state to status where appropriate.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 947
diff changeset
    11
  <td><div class="status">{{ list.item.status }}</div></td>
1686
d9cc9f8ca19f Added created_on DateTime property to request.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1085
diff changeset
    12
  <td><div class="created">{{ list.item.created_on|date:"jS F Y H:i" }}</div></td>
495
87afae6e4c51 Added basic 'invite' functionality
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    13
</tr>