Merge pull request #182 from aurel-g/master
Display missing requirements properly
This commit is contained in:
commit
c17a7caf1a
1 changed files with 8 additions and 6 deletions
|
@ -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 %}
|
||||
|
|
Loading…
Add table
Reference in a new issue