mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 14:43:49 +00:00
renderbox person and thirdparty on resume accompanyingcourse, flex-bloc and flex-table
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{#
|
||||
Template to render a thirdparty
|
||||
* render [raw|label|row|bloc]
|
||||
* render [raw|label|bloc]
|
||||
OPTIONS
|
||||
* with_valid_from bool
|
||||
* addAltNames bool
|
||||
@@ -37,51 +37,6 @@
|
||||
</p>
|
||||
{%- endif -%}
|
||||
|
||||
{# AVANT
|
||||
<div class="name">
|
||||
{{ _self.raw(thirdparty, options) }}
|
||||
</div>
|
||||
<div class="category">
|
||||
{% for type in thirdparty.type %}
|
||||
<span class="category">
|
||||
{{ ('chill_3party.key_label.'~type)|trans }}
|
||||
</span>
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% if thirdparty.comment is not empty %}
|
||||
<div class="comment">
|
||||
{{ thirdparty.comment }}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if thirdparty.address %}
|
||||
<div class="chill_address">
|
||||
<div class="chill_address_address">
|
||||
|
||||
{% if thirdparty.address.streetAddress1 %}<p class="street street1">{{ thirdparty.address.streetAddress1 }}</p>{% endif %}
|
||||
{% if thirdparty.address.streetAddress2 is not empty %}<p class="street street2">{{ thirdparty.address.streetAddress2 }}</p>{% endif %}
|
||||
{% if thirdparty.address.postCode is not empty %}
|
||||
<p class="postalCode"><span class="code">{{ thirdparty.address.postCode.code }}</span> <span class="name">{{ thirdparty.address.postCode.name }}</span></p>
|
||||
<p class="country">{{ thirdparty.address.postCode.country.name|localize_translatable_string }}</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
{%- if options['with_valid_from'] is defined and options['with_valid_from'] == true -%}
|
||||
<span class="address_since">{{ 'Since %date%'|trans( { '%date%' : thirdparty.address.validFrom|format_date('long') } ) }}</span>
|
||||
{%- endif -%}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if thirdparty.email or thirdparty.telephone is not empty %}
|
||||
<div class="contact">
|
||||
<span class="email">
|
||||
<a href="mailto:{{ thirdparty.email }}">{{ thirdparty.email }}</a>
|
||||
</span>
|
||||
<span class="telephone">
|
||||
<a href="tel:{{ thirdparty.telephone }}">{{ thirdparty.telephone|chill_format_phonenumber }}</a>
|
||||
</span>
|
||||
</div>
|
||||
{% endif %}
|
||||
#}
|
||||
|
||||
{#- tricks to remove easily whitespace after template -#}
|
||||
{%- if true -%}</div>{%- endif -%}
|
||||
{% endmacro label %}
|
||||
@@ -94,12 +49,6 @@
|
||||
{{ _self.label(thirdparty, options) }}
|
||||
{%- endif -%}
|
||||
|
||||
{%- if render == 'row' -%}
|
||||
<div class="entity-row">
|
||||
{{ _self.label(thirdparty, options) }}
|
||||
</div>
|
||||
{%- endif -%}
|
||||
|
||||
{%- if render == 'bloc' -%}
|
||||
<div class="item-row entity-bloc">
|
||||
<div class="item-col">
|
||||
|
Reference in New Issue
Block a user