kpsul/bda/templates/revente-confirm.html

20 lines
569 B
HTML
Raw Normal View History

2016-07-25 02:52:49 +02:00
{% extends "base_title.html" %}
{% load staticfiles %}
{%block realcontent %}
2016-09-03 18:47:38 +02:00
<h2>Rachat d'une place</h2>
Note : ce mail sera envoyé à une personne au hasard revendant sa place.
<pre>
Bonjour !
2016-07-25 02:52:49 +02:00
2016-09-03 18:47:38 +02:00
Je souhaiterais racheter ta place pour {{spectacle.title}} le {{spectacle.date}} ({{spectacle.location}}) à {{spectacle.price}}€.
Contacte-moi si tu es toujours intéressé-e !
{{user.get_full_name}} ({{user.email}})
</pre>
2016-07-25 02:52:49 +02:00
<form action="" method="post">
{% csrf_token %}
2016-09-03 18:47:38 +02:00
<input type="submit" class="btn btn-primary pull-right" value="Envoyer">
2016-07-25 02:52:49 +02:00
</form>
{%endblock%}