1
0
mirror of https://github.com/typemill/typemill.git synced 2025-08-08 07:06:44 +02:00

Merge branch 'master' into feature138

This commit is contained in:
trendschau
2020-07-15 10:55:04 +02:00

View File

@@ -7,11 +7,13 @@
{% if systemcheck %}
<h2>Missing Requirements</h2>
<ul style="color:red;padding: 0 14px">
{% for systemerror in systemcheck %}
<li style="margin: 5px 0">{{ systemerror }}</li>
{% endfor %}
</ul>
{% if systemcheck.error %}
<ul style="color:red;padding: 0 14px">
{% for systemerror in systemcheck.error %}
<li style="margin: 5px 0">{{ systemerror }}</li>
{% endfor %}
</ul>
{% endif %}
{% endif %}
<div class="authformWrapper">
@@ -48,4 +50,4 @@
</div>
</div>
{% endblock %}
{% endblock %}