26 lines
688 B
HTML
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 %} |