PonyConf/accounts/templates/admin/participant.html
Guilhem Saurel b4490c8eee Fix stuffs.
Maybe breaks other things, don't know, can't test mails for now.
2016-06-20 01:00:08 +02:00

21 lines
364 B
HTML

{% extends 'base.html' %}
{% load bootstrap3 %}
{% block admintab %}active{% endblock %}
{% block content %}
<div class="page-header">
<h1>Participant: {{ participant }}</h1>
</div>
<dl class="dl-horizontal">
<dt>User</dt><dd>{{ participation.user.profil }}</dd>
<dt>Arrival</dt><dd>{{ participation.arrival }}</dd>
</dl>
<!-- TODO -->
{% endblock %}