{% extends "base.html" %} {% block title %}Enrollment — {{ record.project_name }}{% endblock %} {# One submitted enrollment form, rendered through the same schema the public page uses. The customer's answers are READ-ONLY here — only the office-use block and the status are editable, so the file stays a faithful record of what was actually requested. #} {% block content %}
| No. | Role | Name | Job Title | Mobile App | |
|---|---|---|---|---|---|
| {{ loop.index }} | {{ person.role_label }} | {{ person.name or '—' }} | {{ person.job_title or '—' }} | {% if person.email %} {{ person.email }} {% else %}—{% endif %} | {% if schema.wants_mobile(record, person.key) %} {% else %}—{% endif %} |
| Ref | Task / Function | {% for person in people %}
{{ person.name or 'Person ' ~ loop.index }}
{{ person.role_label }}
|
{% endfor %}
|---|---|---|
| {{ ref }} | {{ label }} | {% for person in people %}{% if not schema.task_applies(scope, person.role) %} · {% elif schema.cell(record, ref, person.key) %} {% else %} — {% endif %} | {% endfor %}