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

<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'" 
onclick="document.location.href='{{ list.redirect }}'" name="name">
  <td><div class="user_name">{{ list.item.from_user.name }}</div></td>
  <td><div class="subject">{{ list.item.subject }}</div></td>
  <td><div class="created_on">{{ list.item.created_on }} </div> </td>
</tr>