person search rendering more reponsive

This commit is contained in:
2021-05-20 19:20:06 +02:00
parent 6a62b46dec
commit 8ae113c872
7 changed files with 86 additions and 23 deletions

View File

@@ -1,3 +1,13 @@
{% set reversed_parents = parents|reverse %}
<span class="chill-entity chill-entity__social-issue">
<span class="badge badge-primary">
{%- for p in reversed_parents %}
<span class="chill-entity__social-issue__parent--{{ loop.revindex0 }}">
{{ p.title|localize_translatable_string }}{{ options['default.separator'] }}
</span>
{%- endfor -%}
<span class="chill-entity__social-issue__child">
{{ socialIssue.title|localize_translatable_string }}
</span>
</span>
</span>

View File

@@ -44,7 +44,7 @@
<div class="person-list--with-period__item__box-person">
<div>
<span>{{ person|chill_entity_render_box({'addLink': true}) }}</span>
<span>{{ person.birthdate|format_date("medium") }}</span>
<span>{{ 'Born the %date%'|transchoice(person.genderNumeric, { '%date%': person.birthdate|format_date("medium") }) }}</span>
</div>
<div>
<ul class="record_actions record_actions--left">
@@ -60,17 +60,17 @@
</div>
</div>
<div class="person-list--with-period__item__box-where">
<span>{{ person.center }}</span>
<span class="person-list--with-period__item__box-where__center">{{ person.center }}</span>
{% if person.getLastAddress is not null %}
<span>{{ person.getLastAddress|chill_entity_render_box({'with_valid_from': false}) }}</span>
{% else %}
<span>{{ 'No address'|trans }}</span>
{% endif %}
{% if person.mobilenumber is not empty %}
<span>{{ person.mobilenumber }}</span>
<span><i class="fa fa-mobile"></i> <a href="tel:{{ person.mobilenumber }}">{{ person.mobilenumber|chill_format_phonenumber }}</a></span>
{% endif %}
{% if person.phonenumber is not empty %}
<span>{{ person.phonenumber }}</span>
<span><i class="fa fa-phone"></i> <a href="tel:{{ person.phonenumber }}">{{ person.phonenumber|chill_format_phonenumber }}</a></span>
{% endif %}
<span>
</div>