-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathticketgraph.html
More file actions
34 lines (34 loc) · 1.69 KB
/
Copy pathticketgraph.html
File metadata and controls
34 lines (34 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/"
xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="layout.html" />
<head>
<title>Ticket Graph</title>
${Markup('<!--[if lt IE 7]>')}
<script type="text/javascript" src="${href.chrome('ticketgraph/excanvas.min.js')}"></script>
${Markup('<![endif]-->')}
</head>
<body>
<h1>Ticket Graph</h1>
<div id="content">
<h2>Last ${days} days</h2>
<p>
<form method="get" id="ticketgraph">
Days Back:
<select name="days">
<option py:for="option in [30,60,90,180,365]" value="$option" selected="${option == days or None}">$option</option>
</select>
User:
<select name="owner" id="owner"></select>
<label><input type="checkbox" name="sg" id="graph-sg" value="1" checked="${sg or None}" />Stack Graph</label>
<input type="submit" value="Graph" />
</form>
</p>
<div id="legend-container"></div>
<div id="placeholder"></div>
</div>
</body>
</html>