mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
116 lines
4.7 KiB
Twig
116 lines
4.7 KiB
Twig
{#
|
|
* Copyright (C) 2014, Champs Libres Cooperative SCRLFS, <http://www.champs-libres.coop>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#}
|
|
{% extends "ChillMainBundle::layout.html.twig" %}
|
|
|
|
{% block layout_content %}
|
|
|
|
<div class="grid-12 parent" id="header-person-name" >
|
|
<div class="grid-10 push-1 parent">
|
|
<div class="grid-4">
|
|
{{ 'Lastname :'|trans|upper }} {{ person.lastName }}
|
|
</div>
|
|
<div class="grid-4">
|
|
{{ 'Fistname:'|trans|upper}} {{ person.firstName }}{% spaceless %}
|
|
{% if not person.isOpen %}
|
|
<i class="fa fa-lock"></i>
|
|
{% endif %}
|
|
{% endspaceless %}</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="grid-12 parent" id="header-person-details" >
|
|
<div class="grid-10 push-1 parent">
|
|
<div class="grid-4">
|
|
{{ 'Birthdate :'|trans|upper }}
|
|
{% if person.birthdate == null %}
|
|
{{ 'Unknown date of birth'|trans }}, {{ ('person.gender.' ~
|
|
person.gender)|trans }}
|
|
{% else %}
|
|
{{ person.birthdate|localizeddate('long', 'none') }}
|
|
{% endif %}
|
|
</div>
|
|
<div class="grid-4">
|
|
{{ 'Nationality:'|trans|upper}}
|
|
{% if person.nationality is not null %}
|
|
- {{ person.nationality.name|localize_translatable_string }}
|
|
{% else %}
|
|
{% trans %}Without nationality{% endtrans %}
|
|
{% endif %}
|
|
</div>
|
|
<div class="grid-4">
|
|
{{ 'Gender:'|trans|upper}}
|
|
{{ person.gender }}
|
|
</div>
|
|
<!--
|
|
<div class="grid-4">
|
|
{% if person.spokenLanguages|length == 0 %}
|
|
{{ 'Spoken languages:'|trans|upper}}
|
|
{{ 'Unknown spoken languages'|trans }}
|
|
{% else %}
|
|
{% for lang in person.spokenLanguages %}
|
|
{{ lang.name|localize_translatable_string }}{% if not loop.last %},{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
</p>
|
|
</div>
|
|
-->
|
|
</div>
|
|
</div>
|
|
|
|
<div id="person_details" class="content parent">
|
|
<section class="container">
|
|
{# Note: activeRouteKey should be defined in Controller or child layout #}
|
|
{{ chill_menu('person', {
|
|
'layout': 'ChillPersonBundle::menu.html.twig',
|
|
'args' : {'person_id': person.id },
|
|
'activeRouteKey': activeRouteKey
|
|
}) }}
|
|
|
|
<div class="grid-8">
|
|
{# Flash messages ! #}
|
|
<div class="container">
|
|
{% for flashMessage in app.session.flashbag.get('success') %}
|
|
<div class="grid-8 centered success">
|
|
<span>
|
|
{{ flashMessage|raw }}
|
|
</span>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
{% for flashMessage in app.session.flashbag.get('danger') %}
|
|
<div class="grid-8 centered error">
|
|
<span>
|
|
{{ flashMessage|raw }}
|
|
</span>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
{% for flashMessage in app.session.flashbag.get('info') %}
|
|
<div class="grid-8 centered notice">
|
|
<span>
|
|
{{ flashMessage|raw }}
|
|
</span>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{% block personcontent %}<!-- block personcontent empty -->{%endblock%}
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |