aboutsummaryrefslogtreecommitdiffstats
path: root/html/projectpage.html
blob: faff12a1279dd40672c008c27e55d9ebd3cecb73 (about) (plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8">
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<title>{project} bug tracker</title>
		<link href="/style" rel="stylesheet">
	</head>
	<body>
		<div class="formattedheader">
			<span class="left">
				<a href="/{project}/">{project}</a>
			</span>
		</div>
		<h2 class="trackerpage-header">
			{project}
		</h2>

		<article class="usage">
			Welcome to the {project} bug tracker! To submit an issue,
			<a href="mailto:{emailaddr}">send an email containing your bug to {emailaddr}</a>.<br>
			To submit a patch, send your email using <code><a href="https://git-send-email.io">git send-email</a></code>.<br>
			Or <a href="mailto:{emailaddr}?subject=%5BDISCUSSION%5D%20%3Creplace%20me%3E">start a discussion</a>.<br>
			Also, if you want to receive emails for new items, <a href="mailto:{emailaddr}?subject=SUBSCRIBE">subscribe!</a>.
		</article>

		<div class="projectpage">

			<div id="left">
				<section id="readme">
					{readme}
				</section>

				<section id="stats">
					<h3>Tracker stats:</h3>
					<table>
						<tr>
							<td>Mail today:</td><td>{mailtoday}</td>
						</tr>
						<tr>
							<td>Total mail:</td><td>{mailtotal}</td>
						</tr>
						<tr>
							<td>Bugs:</td><td>{bugstotal}</td>
						</tr>
						<tr>
							<td>| open:</td><td>{bugsopen}</td>
						</tr>
						<tr>
							<td>| closed:</td><td>{bugsclosed}</td>
						</tr>
						<tr>
							<td>Patches:</td><td>{patchestotal}</td>
						</tr>
						<tr>
							<td>| open:</td><td>{patchesopen}</td>
						</tr>
						<tr>
							<td>| closed:</td><td>{patchesclosed}</td>
						</tr>
						<tr>
							<td>| rejected:</td><td>{patchesrejected}</td>
						</tr>
					</table>					
				</section>

			</div>

			<div id="right">
				<form id="bugsearch">
					<div id="searchbar">
						<input type="text" name="subject" value="{filter_subject}" placeholder="<filter by subject>">
						<input type="submit" value="Find!">
					</div>
					<div class="split5050">
						Type:<br>
						<input type="checkbox" name="bug" {filter_bug} id="bug"><label for="bug">bugs</label>
						<input type="checkbox" name="patch" {filter_patch} id="patch"><label for="patch">patches</label>
						<input type="checkbox" name="discus" {filter_discus} id="discus"><label for="discus">discussions</label>
					</div>
					<div class="split5050">
						Status:<br>
						<input type="checkbox" name="open" {filter_open} id="open"><label for="open">open</label>
						<input type="checkbox" name="closed" {filter_closed} id="closed"><label for="closed">closed</label>
						<input type="checkbox" name="reject" {filter_reject} id="reject"><label for="reject">rejected</label>
						<br>
						<input type="checkbox" name="upstrm" {filter_upstrm} id="upstrm"><label for="upstrm">upstream</label>
						<input type="checkbox" name="unconf" {filter_unconf} id="unconf"><label for="unconf">unconfirmed</label>
					</div>
				</form>
				<table>
					<tr> <th>#</th> <th>Subject</th> <th>Status</th> <th>Type</th></tr>
					{maillist}
				</table>
			</div>

		</div>

	</body>
</html>