71v2/project/templates/airtable/participants/participant_dashboard.html
2023-06-05 19:31:52 +02:00

26 lines
688 B
HTML

{% extends 'airtable_base.html' %}
{% block content %}
{{ super() }}
<div class="column is-9">
<section class="section">
<div class="container">
<h2 class="title">Dashboard pour {{ participant['fields']['Nom complet']}}</h2>
<h3>Sessions</h3>
<ul>
{% for session in sessions %}
<li>{{ session.fields.Name }}</li>
{% endfor %}
</ul>
<h3>Formations<h3>
<ul>
{% for formation in formations %}
<li>{{ formation.fields.Name }}</li>
{% endfor %}
</ul>
</div>
</section>
</div>
{% endblock %}