kpsul/cof/templates/liste_mails.html
Martin Pépin 5aff771d9c Set the new structure of gestioCOF
- `cof` is renamed `gestioCOF`
- `gestioncof` become `cof` (yes it looks pretty stupid but it is not)
- `bds` is created
2017-02-09 21:28:36 +01:00

8 lines
255 B
HTML

{% extends "base_title.html" %}
{% block realcontent %}
<h2>{{ titre }}</h2>
<textarea style="width: 100%; height: 100px; margin-top: 10px;">
{% for personne in personnes %}{{ personne.user.email }}, {% endfor %}</textarea>
{% endblock %}