app/soc/templates/soc/notification/list/row.html
author Lennard de Rijk <ljvderijk@gmail.com>
Fri, 12 Dec 2008 23:28:18 +0000
changeset 726 ba3d399ec9be
child 1072 9cd86652481f
permissions -rw-r--r--
Added Notifications. Notifications will primarily be used to serve the user information message like "New Request Pending". The system can be expanded later on to a messaging system. If you are a developer you can create message by going to notification/create . This has been done so the system can easily be tested. But will of course be visible in an easy-to-access location when the transition to a message system has been made. Patch by: Lennard de Rijk
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
726
ba3d399ec9be Added Notifications.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     1
<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'" 
ba3d399ec9be Added Notifications.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     2
onclick="document.location.href='{{ list.redirect }}'" name="name">
ba3d399ec9be Added Notifications.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     3
  <td><div class="user_name">{{ list.item.from_user.name }}</div></td>
ba3d399ec9be Added Notifications.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     4
  <td><div class="subject">{{ list.item.subject }}</div></td>
ba3d399ec9be Added Notifications.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     5
  <td><div class="created_on">{{ list.item.created_on }} </div> </td>
ba3d399ec9be Added Notifications.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     6
</tr>