Files
baroness/app/templates/billing_mass_mail.html
Ulrich Knechtelsdorfer c241e4d244 - add billing pages without function
only the blank html pages were added and the path was set in views.py
 the actual email functionality has to be added
2016-02-24 00:15:13 +01:00

23 lines
667 B
HTML

{% extends "base.html"%}
{% set title = "An alle User Rechnung versenden" %}
{% block content %}
<h3>TODO: </h3>
<ul>
<li>actual send emails</li>
<li>save default text somewhere and make it configureable</li>
<li>parse wildcards</li>
</ul>
{% if success %}
<p>{{ success }}</p>
{% endif %}
<h1>Rechnung an alle verschicken</h1>
<form name="billing" method="post" action="/billing/send_all_bills">
<textarea cols="80" rows="20">
Hallo %%longname%%
du hast zurzeit viele Schulden.
%%if_is_black%%Weil du zu hohe Schulden hast, bist du geschwärzt%%endif%%
</textarea>
<input type="submit" value="Email versenden">
</form>
{% endblock %}