forked from DGNum/gestioCOF
26 lines
710 B
HTML
26 lines
710 B
HTML
{% extends "base_title.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block extra_head %}
|
|
<link type="text/css" rel="stylesheet" href="{% static "css/bda.css" %}" />
|
|
{% endblock %}
|
|
|
|
{% block realcontent %}
|
|
|
|
<h1>Revente de place</h1>
|
|
<form action="" method="post" id="resellform">
|
|
{% csrf_token %}
|
|
{% if form.spectacle.errors %}<ul class="errorlist"><li>Sélectionnez un spetacle</li></ul>{% endif %}
|
|
<p>
|
|
<pre>
|
|
Bonjour,<br />
|
|
<br />
|
|
Je souhaite revendre {{ form.count }} place(s) pour {{ form.spectacle }}.<br />
|
|
Contactez-moi par email si vous êtes intéressé !<br />
|
|
<br />
|
|
{{ user.get_full_name }} ({{ user.email }})
|
|
</pre>
|
|
</p>
|
|
<input type="submit" value="Envoyer" />
|
|
</form>
|
|
{% endblock %}
|