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:
@@ -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 %}
|
||||
|
||||
Reference in New Issue
Block a user