2013-01-17 06:52:23 +01:00
|
|
|
<section class="tickets">
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th class="empty"></th>
|
|
|
|
<th>Title</th>
|
|
|
|
<th>Priority</th>
|
|
|
|
<th>Status</th>
|
|
|
|
</tr>
|
2013-01-17 10:08:19 +01:00
|
|
|
{%foreach ticket in tickets}
|
|
|
|
<tr class="clickable priority-{%?ticket[priority-lowercase]} status-{%?ticket[status-lowercase]}" data-url="{%?project-url}/ticket/{%?ticket[id]}">
|
|
|
|
<td class="id">#{%?ticket[id]}</td>
|
|
|
|
<td class="title"><a href="{%?project-url}/ticket/{%?ticket[id]}">{%?ticket[title]}</a></td>
|
|
|
|
<td class="priority">{%?ticket[priority]}</td>
|
|
|
|
<td class="status">{%?ticket[status]}</td>
|
|
|
|
</tr>
|
|
|
|
{%/foreach}
|
2013-01-17 06:52:23 +01:00
|
|
|
</table>
|
|
|
|
</section>
|