-
Notifications
You must be signed in to change notification settings - Fork 6
/
bug.html
42 lines (41 loc) · 1.68 KB
/
bug.html
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
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this file,
- You can obtain one at http://mozilla.org/MPL/2.0/. -->
<!DOCTYPE html>
<html lang="en-us">
<head>
<link rel="shortcut icon" href="/clouseau.ico">
<link rel="stylesheet" href="/clouseau.css?v=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Report a bug — {{ uuid }}</title>
<script src="/clouseau.js"></script>
</head>
<body>
<header>
<nav>
<ul class="nav">
<li>
<a href="https://www.mozilla.org/" class="brand">mozilla</a>
</li>
<li style="float:right;">
<a href="https://github.com/mozilla/crash-clouseau"><span class="github"></span></a>
</li>
</ul>
</nav>
</header>
{% if bugdata -%}
<p>Here are the list of bugs for the signature “{{ signature }}”:
<ul>
{% for bugid, info in bugdata -%}
<li class="listbugs">
<a href="https://bugzilla.mozilla.org/{{ bugid }}">{% if info and info['status'] == 'RESOLVED' -%}<s class="red">{{ bugid }}</s>{% else -%}{{ bugid }}{% endif -%}</a>{% if info -%}{% if info['dupe_of'] -%} (duplicate of <a href="https://bugzilla.mozilla.org/{{ info['dupe_of'] }}">{{ info['dupe_of'] }}</a>){% endif -%} — {{ info['summary'] }}{% endif -%}
</li>
{% endfor -%}
</ul>
</p>
{% endif -%}
<p>
<a href="{{ url }}">Create a new bug</a>{% if needinfo %} and ni on <a href="mailto:{{ needinfo }}">{{ needinfo }}</a>{% endif %}.
</p>
</body>
</html>