mirror of
https://github.com/journeyman-cc/smeagol.git
synced 2026-04-12 18:05:06 +00:00
32 lines
853 B
HTML
32 lines
853 B
HTML
{% extends "templates/base.html" %}
|
|
{% block content %}
|
|
<div id="header" class="wiki">
|
|
<h1>{{title}}</h1>
|
|
{{header|safe}}
|
|
</div>
|
|
<div id="left-bar" class="wiki">
|
|
{{left-bar|safe}}
|
|
</div>
|
|
<div id="content" class="wiki">
|
|
<table>
|
|
<tr>
|
|
<th>Who</th><th>When</th><th>What</th><th>Which</th>
|
|
</tr>
|
|
{% for entry in history %}
|
|
<tr>
|
|
<td>
|
|
<a href="mailto:{{entry.email}}">{{entry.author}}</a>
|
|
</td>
|
|
<td>
|
|
{{entry.time}}
|
|
</td>
|
|
<td>
|
|
{{entry.message}}
|
|
</td>
|
|
<td>
|
|
{{entry.id}}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
{% endblock %}
|