Initial commit of historian web application

This commit is contained in:
Captain Beyond
2024-08-03 06:10:53 -05:00
parent fa2c8ee85a
commit c18ae34880
18 changed files with 5354 additions and 0 deletions

16
templates/history.html Normal file
View 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 %}