improved about page to include BUGs and TODO, still better formatting required,and build date to be handled separate to last commit date

This commit is contained in:
2023-01-03 00:34:03 +11:00
parent 06846b86c5
commit be3e2ae19e
5 changed files with 48 additions and 4 deletions

View File

@@ -12,13 +12,25 @@
</div>
<h5><b>
Recent commits:
</b></h4>
</b></h5>
{% for c in commits %}
<dl class="row">
<div class="dt col-3 bg-light">{{c.date}}</div>
<div class="dd col-9 bg-light">{{c.str}}</div>
</dl>
{% endfor %}
<h5><b>
Known Bugs:
</b></h5>
{% for b in bugs %}
<dl class="row bg-light">{{b.str|safe}}</dl>
{% endfor %}
<h5><b>
TODO:
</b></h5>
<pre>
{{todo}}
</pre>
</div class="container">
{% endblock main_content %}