Fix non-unanimous decomm reasons not showing up

This commit is contained in:
Jason Rhinelander 2022-04-05 13:26:49 -03:00
parent 5c18cd3325
commit 71ae2e5044
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@
{%if show_reasons%}
<h3>{%if tx.extra.sn_state_change.type == 'decom'%}Decommission{%else%}Deregistration{%endif%} Reason(s):</h3>
<ul>
{%if tx.extra.sn_state_change.reasons or tx.extra.sn_state_change.reasons%}
{%if tx.extra.sn_state_change.reasons or tx.extra.sn_state_change.reasons_maybe%}
{%if tx.extra.sn_state_change.reasons%}
{%for r in tx.extra.sn_state_change.reasons%}
<li>{{ readable_reason.display(r) }}</li>