app/soc/templates/soc/program/list/row.html
author Pawel Solyga <Pawel.Solyga@gmail.com>
Sun, 07 Dec 2008 19:18:24 +0000
changeset 711 4bfb1a2d5bfe
parent 643 b57d538a9dd3
child 2284 e7bb719e2539
permissions -rw-r--r--
Program Name column showed link_id instead of name, replace link_id with name in soc/program/list/row.html template. Patch by: Pawel Solyga

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