Initial commit of historian web application
This commit is contained in:
16
templates/history.html
Normal file
16
templates/history.html
Normal file
@@ -0,0 +1,16 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block styles %}
|
||||
{{ super() }}
|
||||
<link rel="StyleSheet" href="/history.css" type="text/css" media="screen" />
|
||||
{% endblock styles %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<ul id="revisions">
|
||||
{% for revision in revisions %}
|
||||
<li><a href="{{ relative_root | safe }}{{ page.url }}?revision={{ revision.id }}">{{ revision.datetime }} {{ revision.summary }} ({{ revision.author }})</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
{% endblock content %}
|
||||
Reference in New Issue
Block a user