kpsul/bda/templates/bda-unpaid.html

9 lines
293 B
HTML
Raw Permalink Normal View History

2013-09-05 22:21:32 +02:00
{% 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>
2016-06-22 02:16:24 +02:00
<h3>Total&nbsp: {{ unpaid|length }}</h3>
2013-09-05 22:21:32 +02:00
{% endblock %}