Verify that the authorization header has 2 parts
[anoweco.git] / data / templates / latest.htm
1 <html xmlns="http://www.w3.org/1999/xhtml">
2  <head>
3   <meta charset="utf-8"/>
4   <title>Latest comments</title>
5   <link rel="stylesheet" type="text/css" href="css/latest.css"/>
6  </head>
7  <body class="h-entry">
8   <h1>Latest comments</h1>
9   <table>
10    <thead>
11     <tr>
12      <th>Date</th>
13      <th>Type</th>
14      <th>User</th>
15      <th>For domain</th>
16     </tr>
17     </thead>
18    <tbody>
19     {% for comment in comments %}
20     <tr>
21      <td><a href="{{comment.url}}">{{comment.comment_published}}</a></td>
22      <td>{{comment.comment_type}}</td>
23      <td>{{comment.user.user_name}}</td>
24      <td><a href="{{comment.comment_of_url}}">{{comment.domain}}</a></td>
25     </tr>
26     {% endfor %}
27    </tbody>
28   </table>
29  </body>
30 </html>