{% extends "passerelle/manage/service_view.html" %} {% load i18n passerelle %} {% block description %} {% endblock %} {% block endpoints %}

Contents

Adults

{% for adult in object.jsondatabase.adults.values|dictsort:"id" %} {% endfor %}
idtextbirthdatekeywords
{{ adult.id }}{{ adult.text }}{{ adult.birthdate }} {{ adult.keywords|join:'
' }}

Children

{% for child in object.jsondatabase.children.values|dictsort:"id" %} {% endfor %}
idtextbirthdatekeywords
{{ child.id }}{{ child.text }}{{ child.birthdate }} {{ child.keywords|join:'
' }}

Families

{% for family in object.jsondatabase.families.values|dictsort:"id" %} {% endfor %}
idadultschildren contactskeywords
{{ family.id }} {{ family.adults|join:', ' }} {{ family.children|join:', ' }} {{ family.contacts|join:', ' }} {{ family.keywords|join:'
' }}
{% endblock %} {% block security %}

{% trans 'Access is limited to the following API users:' %}

{% access_rights_table resource=object permission='can_access' %} {% endblock %}