blob: f41cb61e37c6de579360024a0c93facfa3d9d3b5 (
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
|
<!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">
<table>
<tr> <th>#</th> <th>Subject</th> <th>Status</th> <th>Type</th></tr>
{maillist}
</table>
</div>
</div>
</body>
</html>
|