37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
{% block main_content %}
|
|
|
|
<div class="container">
|
|
<div class="row px-3 my-5 offset-lg-3 col-lg-6 col-sm-12" style="border: 3px solid #5bc0de; border-radius: 15px;">
|
|
<h3 class="my-3 text-center" style="color: #5bc0de">
|
|
{# <svg width="64" height="64" fill="currentColor"><use xlink:href="{{url_for('internal', filename='icons.svg')}}#pa_logo" /></svg> About Photo Assistant</h3> #}
|
|
<svg width="64" height="64" fill="currentColor"><use xlink:href="internal/icons.svg#pa_logo" /></svg> Photo Assistant - About</h3>
|
|
<div class="alert alert-info">
|
|
{{build_info}}
|
|
</div>
|
|
</div>
|
|
<h5><b>
|
|
Recent commits:
|
|
</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 %}
|