]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/location/report-a-problem.html
location: Create a page that explains how to report problems
[ipfire.org.git] / src / templates / location / report-a-problem.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ _("Report A Problem") }}{% end block %}
4
5 {% block container %}
6 <section class="hero is-light">
7 <div class="hero-body">
8 <div class="container">
9 <nav class="breadcrumb" aria-label="breadcrumbs">
10 <ul>
11 <li>
12 <a href="/">
13 {{ _("Home") }}
14 </a>
15 </li>
16 <li>
17 <a href="/location">
18 {{ _("Location") }}
19 </a>
20 </li>
21 <li class="is-active">
22 <a href="#" aria-current="page">{{ _("Report A Problem") }}</a>
23 </li>
24 </ul>
25 </nav>
26
27 <h1 class="title">{{ _("Report A Problem") }}</h1>
28 </div>
29 </div>
30 </section>
31
32 <section class="section">
33 <div class="container">
34 <div class="content is-size-5">
35 <p>
36 Although we aim for the highest accuracy when creating IPFire Location,
37 there is a chance that we are getting things wrong.
38 If you have discovered a potential problem in our database, it would
39 be great if you could report it to us. It is only a few steps:
40 </p>
41
42 <ol>
43 {% if not current_user %}
44 <li>
45 If you don't have one already,
46 create an <a href="/join">account</a>.
47 </li>
48 {% end %}
49
50 <li>
51 Gather as much information as possible around your problem.
52 The more information we have available, the faster we can fix it.
53 </li>
54
55 <li>
56 <a href="https://bugzilla.ipfire.org/enter_bug.cgi?product=Location%20Database&amp;component=Database">
57 Create a ticket
58 </a> on Bugzilla
59 </li>
60 </ol>
61 </div>
62 </div>
63 </section>
64 {% end block %}