fix messages revente_interested

This commit is contained in:
Ludovic Stephan 2016-11-12 23:45:14 -02:00
parent 1ba2766231
commit 790e73d7a4
3 changed files with 13 additions and 6 deletions

View file

@ -3,7 +3,7 @@
{% block realcontent %} {% block realcontent %}
<h2>Inscription à une revente</h2> <h2>Inscription à une revente</h2>
<p class="success"> Votre inscription pour a bien été enregistrée !</p> <p class="success"> Votre inscription a bien été enregistrée !</p>
<p>Le tirage au sort pour cette revente ({{spectacle}}) sera effectué le {{date}}. <p>Le tirage au sort pour cette revente ({{spectacle}}) sera effectué le {{date}}.
{% endblock %} {% endblock %}

View file

@ -2,5 +2,12 @@
{% block realcontent %} {% block realcontent %}
<h2>Nope</h2> <h2>Nope</h2>
<p>Cette revente n'est pas disponible actuellement, désolé !</p> {% if revente.shotgun %}
<p>Le tirage au sort de cette revente a déjà été effectué !</p>
<p>Si personne n'était intéressé, elle est maintenant disponible
<a href="{% url "bda-buy-revente" revente.attribution.spectacle.id %}">ici</a>.</p>
{% else %}
<p> Il n'est pas encore possible de s'inscrire à cette revente, réessaie dans quelque temps !</p>
{% endif %}
{% endblock %} {% endblock %}

View file

@ -369,9 +369,9 @@ def revente_interested(request, revente_id):
revente = get_object_or_404(SpectacleRevente, id=revente_id) revente = get_object_or_404(SpectacleRevente, id=revente_id)
participant, created = Participant.objects.get_or_create( participant, created = Participant.objects.get_or_create(
user=request.user, tirage=revente.attribution.spectacle.tirage) user=request.user, tirage=revente.attribution.spectacle.tirage)
if timezone.now() < revente.date + timedelta(hours=1) or revente.shotgun: if (timezone.now() < revente.date + timedelta(hours=1)) or revente.shotgun:
# TODO améliorer le message d'erreur return render(request, "bda-wrongtime.html",
return render(request, "bda-wrongtime.html", {}) {"revente": revente})
revente.answered_mail.add(participant) revente.answered_mail.add(participant)
return render(request, "bda-interested.html", return render(request, "bda-interested.html",