app/soc/templates/soc/request/list/row.html
author Lennard de Rijk <ljvderijk@gmail.com>
Fri, 06 Mar 2009 15:23:22 +0000
changeset 1686 d9cc9f8ca19f
parent 1085 0afbdd0905ef
child 1965 a0eb42b003c1
permissions -rw-r--r--
Added created_on DateTime property to request. As requested in Issue 302. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
495
87afae6e4c51 Added basic 'invite' functionality
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     1
<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
     2
onclick="document.location.href='{{ list.redirect }}'" name="name">
512
aae25d2b4464 Rename link_name to link_id everywhere, regardless of case (so LINK_NAME
Todd Larsen <tlarsen@google.com>
parents: 495
diff changeset
     3
  <td align="right"><div class="user_link_id"><a class="noul"
562
1bf2beedda03 Made Request use the new link_id and scope_path
Sverre Rabbelier <srabbelier@gmail.com>
parents: 554
diff changeset
     4
         href="{{ list.redirect }}">{{ list.item.link_id }}</a>
495
87afae6e4c51 Added basic 'invite' functionality
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     5
     </div>
87afae6e4c51 Added basic 'invite' functionality
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     6
  </td>
918
295c0d4f6d98 Changed the request templates to match the changes to the model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 566
diff changeset
     7
  <td><div class="role">{{ list.item.role_verbose }}</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
     8
  <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
     9
  <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
    10
  <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
    11
</tr>