fix translation and how holder is shown

This commit is contained in:
Julien Fastré 2022-02-11 14:49:59 +01:00
parent 15023d348a
commit 42579b5752

View File

@ -44,12 +44,16 @@
{% endif %} {% endif %}
<div class="wl-row"> <div class="wl-row">
<div class="wl-col title"> <div class="wl-col title">
<h3>{{ 'As member'|trans }}</h3> <h3>{{ 'household.As member'|trans }}</h3>
</div> </div>
<div class="wl-col list"> <div class="wl-col list">
<p class="item">{{ p.position.label|localize_translatable_string }} <p class="item">
{{ p.position.label|localize_translatable_string }}
{% if p.holder %} {% if p.holder %}
<span class="holder">{{ 'household.holder'|trans }}</span> <span class="fa-stack fa-holder" title="{{ 'houshold.holder'|trans|e('html_attr') }}">
<i class="fa fa-circle fa-stack-1x text-success"></i>
<i class="fa fa-stack-1x">T</i>
</span>
{% endif %} {% endif %}
</p> </p>
</div> </div>