{% extends 'base_pdf.html.twig' %} {% set bodyClass = 'registry_request show' %} {% set menuItem = 'registry_request' %} {% block body %} {% for object in objects %}
| {{ 'registry.request.label.object'|trans }} | {{ object.object|dictionary('registry_request_object') }} |
| {{ 'global.label.service'|trans }} | {{ object.service }} |
| {{ 'registry.request.label.other_object'|trans }} | {{ object.otherObject }} |
| {{ 'registry.request.label.date'|trans }} | {{ object.date|date('d/m/Y') }} |
| {{ 'registry.request.label.reason'|trans }} | {{ object.reason }} |
| {{ 'registry.request.label.complete'|trans }} | {% if object.complete %} {{ 'global.label.yes'|trans }} {% else %} {{ 'global.label.no'|trans }} {% endif %} |
| {{ 'registry.request.label.legitimate_applicant'|trans }} | {% if object.legitimateApplicant %} {{ 'global.label.yes'|trans }} {% else %} {{ 'global.label.no'|trans }} {% endif %} |
| {{ 'registry.request.label.legitimate_request'|trans }} | {% if object.legitimateRequest %} {{ 'global.label.yes'|trans }} {% else %} {{ 'global.label.no'|trans }} {% endif %} |
| {{ 'registry.request.label.state'|trans }} | {{ object.state|dictionary('registry_request_state') }} |
| {{ 'registry.request.label.state_rejection_reason'|trans }} | {{ object.stateRejectionReason }} |
| {{ 'registry.request.label.answer_response'|trans }} | {{ object.answer.response|nl2br }} |
| {{ 'registry.request.label.answer_date'|trans }} | {% if object.answer.date %} {{ object.answer.date|date('d/m/Y') }} {% endif %} |
| {{ 'registry.request.label.answer_type'|trans }} | {% if object.answer.type is not null %} {{ object.answer.type|dictionary('registry_request_answer_type') }} {% endif %} |
| {{ 'global.label.contact.civility'|trans }} | {{ object.applicant.civility|dictionary('registry_request_civility') }} |
| {{ 'global.label.contact.first_name'|trans }} | {{ object.applicant.firstName }} |
| {{ 'global.label.contact.last_name'|trans }} | {{ object.applicant.lastName }} |
| {{ 'global.label.address.line_one'|trans }} | {{ object.applicant.address }} |
| {{ 'global.label.contact.email'|trans }} | {{ object.applicant.mail }} |
| {{ 'global.label.contact.phone_number'|trans }} | {{ object.applicant.phoneNumber }} |
| {{ 'registry.request.label.concerned_people'|trans }} | {% if object.applicant.concernedPeople %} {{ 'global.label.yes'|trans }} {% else %} {{ 'global.label.no'|trans }} {% endif %} |
| {{ 'global.label.contact.civility'|trans }} | {% if object.concernedPeople.civility %} {{ object.concernedPeople.civility|dictionary('registry_request_civility') }} {% endif %} |
| {{ 'global.label.contact.first_name'|trans }} | {{ object.concernedPeople.firstName }} |
| {{ 'global.label.contact.last_name'|trans }} | {{ object.concernedPeople.lastName }} |
| {{ 'global.label.address.line_one'|trans }} | {{ object.concernedPeople.address }} |
| {{ 'global.label.contact.email'|trans }} | {{ object.concernedPeople.mail }} |
| {{ 'global.label.contact.phone_number'|trans }} | {{ object.concernedPeople.phoneNumber }} |
| {{ 'registry.request.label.link_with_applicant'|trans }} | {{ object.concernedPeople.linkWithApplicant }} |
| {{ 'global.label.organization'|trans }} | {{ object.collectivity }} |
| {{ 'global.label.created_at'|trans }} | {{ object.createdAt|date('d/m/Y H:i') }} |
| {{ 'global.label.updated_at'|trans }} | {{ object.updatedAt|date('d/m/Y H:i') }} |
| {{ 'global.label.updated_by'|trans }} | {{ object.updatedBy }} |