forked from DGNum/gestioCOF
8 lines
293 B
HTML
8 lines
293 B
HTML
{% extends "base_title.html" %}
|
|
|
|
{% block realcontent %}
|
|
<h2>Impayés</h2>
|
|
<textarea style="width: 100%; height: 100px; margin-top: 10px;">
|
|
{% for participant in unpaid %}{{ participant.user.email }}, {% endfor %}</textarea>
|
|
<h3>Total : {{ unpaid|length }}</h3>
|
|
{% endblock %}
|