summaryrefslogtreecommitdiff
path: root/distixlib/templates/index.html.j2
blob: 60b3b22caba59f9fdc87ce6b5f7c83c625a70200 (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
<html>
  <head>
    <title>distix</title>
    <link rel="stylesheet" href="distix.css" type="text/css" />
    <meta charset="utf-8" />
  </head>
  <body>

    <h1>distix</h1>
    {% autoescape false %}
    {{ description_html }}
    {% endautoescape %}
    
    <h2>Open tickets</h2>
    <ul class="ticketlist">
      {% for ticket in tickets %}
      <li>
        <span class="date"
              >{{ticket.get_newest_message_timestamp()|date }}<span>
        <a class="ticketinlist" href="{{ ticket.get_ticket_id() }}.html"
           >{{ ticket.get_title() }}</a></li>
      {% endfor %}
    </ul>

    <p><a href="closed.html">Closed tickets</a></p>
      
    <div class="footer">
      <p>Updated {{ timestamp }}.
    </div>
  </body>
</html>