<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/"
xmlns:xi="http://www.w3.org/2001/XInclude">
<?python from pprint import pformat?>
<xi:include href="master.html" />
<xi:include href="lib.html" />
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>
<title>Search</title>
</head>
<body>
<h1 class="title">Search</h1>
<form method="GET" action=".">
<input type="text" name="q" value="$q"/><br/>
Search history? <input type="checkbox" name="history" checked="${history or None}"/><br/>
<input type="submit" value="Search"/>
</form>
<p py:if="q">
<form method="GET" action="../bins/newbin">
<input type="submit" value="Save Search"/>
<input type="hidden" name="q" value="$q"/>
</form>
</p>
<p py:if="count==0 and q">No results.</p>
<p py:if="count==1 and q">$count result.</p>
<p py:if="count > 1 and q">$count results.</p>
<table py:if="count != 0 and q">
<thead>
<tr>
<th>Ticket</th>
<th>Status</th>
<th>Description</th>
<th>Assigned To</th>
<th>Updated</th>
</tr>
</thead>
<tbody>
<tr py:for="t in tickets">
<td><a href="${t.url()}">[#${t.ticket_num}] $t.summary</a></td>
<td class="${t.status}">${t.status}</td>
<td py:if="len(t.description) > 70">${t.description[0:70]}...</td>
<td py:if="len(t.description) <= 70">${t.description}</td>
<td py:if="t.assigned_to_id">${t.assigned_to.display_name}</td>
<td py:if="not t.assigned_to_id"></td>
<td>${h.ago(t.created_date)}</td>
</tr>
<tr py:if="len(tickets) < count">
<td />
<td colspan="7">
<a href="${tg.url('.', q=q, history=history, limit=count)}">More Results</a>
</td>
</tr>
</tbody>
</table>
<a href="${tg.url('../edit/', q=q, limit=count)}" py:if="count != 0">Edit All</a>
</body>
</html>