app/soc/templates/soc/request/list/row.html
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 22 Nov 2008 20:10:43 +0000
changeset 562 1bf2beedda03
parent 554 68c7a1dd3c52
child 566 858e02fbbb97
permissions -rw-r--r--
Made Request use the new link_id and scope_path This cleans a lot of weird user interface badness and demonstrates how Linkable can be used.
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>
539
e30462354e26 Allow for multiple list objects
Sverre Rabbelier <srabbelier@gmail.com>
parents: 512
diff changeset
     7
  <td><div class="role">{{ list.item.role }}</div></td>
562
1bf2beedda03 Made Request use the new link_id and scope_path
Sverre Rabbelier <srabbelier@gmail.com>
parents: 554
diff changeset
     8
  <td><div class="to">{{ list.item.scope_path }}</div></td>
1bf2beedda03 Made Request use the new link_id and scope_path
Sverre Rabbelier <srabbelier@gmail.com>
parents: 554
diff changeset
     9
  <td><div class="accepted">{{ list.item.group_accepted }}</div></td>
1bf2beedda03 Made Request use the new link_id and scope_path
Sverre Rabbelier <srabbelier@gmail.com>
parents: 554
diff changeset
    10
  <td><div class="declined">{{ list.item.group_accepted }}</div></td>
495
87afae6e4c51 Added basic 'invite' functionality
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    11
</tr>