{% extends "@ChillPerson/Person/layout.html.twig" %} {% set activeRouteKey = 'chill_person_view' %} {# This view should receive those arguments: - person #} {% block title %}{{ 'Person details'|trans|capitalize ~ ' ' ~ person|chill_entity_render_string }}{% endblock %} {# we define variables to include an edit form repeated multiple time across the page #} {% set edit_tmp_name = '@ChillPerson/Form/go_to_form.html.twig' %} {% set edit_tmp_args = { 'form_path_args' : { 'person_id': person.id }, 'form_path_key' : 'chill_person_general_edit' } %} {% block content %}
{{ person.maritalStatusComment.comment|chill_markdown_to_html }}
{% if person.acceptSMS %}{{ 'Accept short text message'|trans }}{% endif %}
{{ person.contactInfo|chill_markdown_to_html }}{% else %} {{ 'No data given'|trans }} {% endif %}