forked from DGNum/gestioCOF
19 lines
569 B
HTML
19 lines
569 B
HTML
{% extends "base_title.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{%block realcontent %}
|
|
<h2>Rachat d'une place</h2>
|
|
Note : ce mail sera envoyé à une personne au hasard revendant sa place.
|
|
<pre>
|
|
Bonjour !
|
|
|
|
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>
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
<input type="submit" class="btn btn-primary pull-right" value="Envoyer">
|
|
</form>
|
|
{%endblock%}
|