15 lines
454 B
HTML

{% extends "base.html" %}
{% import 'bootstrap/wtf.html' as wtf %}
{% block app_content %}
<table class="table">
<tbody>
{% for candidate in establishment_candidates %}
<tr>
<td>{{ candidate.User.email }}</td>
<td>{% include "establishment/candidates/_candidate_evaluation.html" %}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% include "utils/general/_page_navigation.html" %}
{% endblock %}