summaryrefslogtreecommitdiff
path: root/distixlib/templates/ticket.html.j2
blob: f31dbf2d1a947d49242e425693a10292ef7d48be (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
<html>
  <head>
    <title>distix: {{ ticket.get_ticket_id() }} {{ ticket.get_title() }}</title>
    <link rel="stylesheet" href="distix.css" type="text/css" />
    <meta charset="utf-8" />
  </head>
  <body>

    <h1>{{ ticket.get_title() }}</h1>

    <p><a href="index.html">Front page</a></p>

    <ul>
    {% for key in metadata.keys()|sort %}
    {%   for value in metadata.get_all_values(key) %}
    <li> <code>{{key}}</code>: <code>{{value}}</code></li>
    {%   endfor %}
    {% endfor %}
    </ul>

    {% for msg in msgs %}
    <pre>{{ msg }}</pre>
    {% endfor %}
      
    <div class="footer">
      <p>Updated {{ timestamp }}.
    </div>
  </body>
</html>