{% 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 %}
| Seat | Name | Job Title | Mobile App | |
|---|---|---|---|---|
| {{ reg.label }} {% if reg.include %} {% endif %} | {{ reg.name or '—' }} | {{ reg.job_title or '—' }} | {% if reg.email %} {{ reg.email }} {% else %}—{% endif %} | {% if record.mobile_app.get(reg.key) %} {% else %}—{% endif %} |
| Ref | Task / Function | {% for col_key, col_label in schema.COLUMNS %}{{ col_label.replace('\n', ' ') }} | {% endfor %}
|---|---|---|
| {{ ref }} | {{ label }} | {% for col_key, _col_label in schema.COLUMNS %}{% if scope != 'all' and col_key != 'admin' %} · {% elif row.get(col_key) %} {% else %} — {% endif %} | {% endfor %}