Fix Issue 389 (Clicking list entry will not open new tab/window).
[Melange.git] / app / soc / templates / soc / priority_group / list / row.html
blobc58ea10df46a3bd86873547834966b24626c9259
1 <tr class="off" onmouseover="this.className='on'; do_redirect=true" onmouseout="this.className='off'"
2 onclick="if (do_redirect) document.location.href='{{ list.redirect }}'" name="name">
3 <td align="right">
4 <div class="link_id">
5 <a class="noul"
6 href="{{ list.redirect }}">{{ list.item.link_id }}</a>
7 </div>
8 </td>
9 <td><div class="name">{{ list.item.name }}</div></td>
10 <td><div class="priority">
11 {% if not list.item.priority %}disabled{% else %}{{ list.item.priority }}{% endif %}
12 </div></td>
13 </tr>