app/soc/templates/soc/document/list/row.html
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 22 Nov 2008 14:01:39 +0000
changeset 554 68c7a1dd3c52
parent 553 app/soc/templates/soc/document/list/docs_row.html@c0cc20b4afc9
child 2284 e7bb719e2539
permissions -rw-r--r--
Renamed templates/soc/entity/list/entity_*.html to *.html This makes it possible to generalize list template positions. Patch by: Sverre Rabbelier

<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'" 
onclick="document.location.href='{{ list.redirect }}'" name="name">
  <td align="right">
   <div class="title">
    <a class="noul"
     href="{{ list.redirect }}">{{ list.item.scope_path}}/{{ list.item.link_id }}</a>
   </div>
  </td>
  <td><div class="title">{{ list.item.title }}</div></td>
  <td><div class="link_id">{{ list.item.link_id }}</div></td>
  <td><div class="featured">{{ list.item.is_featured }}</div></td>
  <td><div class="author">{{ list.item.author.link_id }}</div></td>
  <td><div class="created">{{ list.item.created }}</div></td>
  <td><div class="modified">{{ list.item.modified }}</div></td>
</tr>