Based on #157 and #158, revert back to existence checks and length rather than default empty array initialization for ease of reading

This commit is contained in:
Benjamin Southall 2019-08-10 12:01:07 +10:00
parent 878b9aa420
commit a5650df053
8 changed files with 10 additions and 10 deletions

View file

@ -18,7 +18,7 @@
<legend>{{ notes|count }} {% trans notes_on_record %}</legend>
</legend>
{% if notes|default([])|length > 0 %}
{% if notes and noteslength > 0 %}
<table class="modlog">
<tr>
<th>{% trans 'Staff' %}</th>
@ -81,7 +81,7 @@
</fieldset>
{% endif %}
{% if bans|default([])|length > 0 and mod|hasPermission(config.mod.view_ban) %}
{% if bans and bans|length > 0 and mod|hasPermission(config.mod.view_ban) %}
<fieldset id="bans">
{% set bans_on_record = 'ban' ~ (bans|count != 1 ? 's' : '') ~ ' on record' %}
<legend>{{ bans|count }} {% trans bans_on_record %}</legend>
@ -174,7 +174,7 @@
</fieldset>
{% endif %}
{% if logs|default([])|length > 0 %}
{% if logs and logs|length > 0 %}
<fieldset id="history">
<legend>History</legend>
<table class="modlog" style="width:100%">