Correction de bugs
- Liens invalide dans le template pour visualisé les places obtenues - Erreurs dans la vue pour visualiser l'état des demandes
This commit is contained in:
parent
dfd4fb7d83
commit
299c5f0823
2 changed files with 4 additions and 4 deletions
|
@ -12,7 +12,7 @@
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ol>
|
</ol>
|
||||||
<h4>Total à payer : {{ total|floatformat }}€</h4>
|
<h4>Total à payer : {{ total|floatformat }}€</h4>
|
||||||
<h4><a href="{% url "bda-places-attribuees-ics" %}">Exporter au format calendrier</a> (.ics, compatible avec tous les logiciels d'agenda)</h4>
|
<h4><a href="{% url "bda-places-attribuees-ics" tirage.id %}">Exporter au format calendrier</a> (.ics, compatible avec tous les logiciels d'agenda)</h4>
|
||||||
{% else %}
|
{% else %}
|
||||||
<h3>Vous n'avez aucune place :(</h3>
|
<h3>Vous n'avez aucune place :(</h3>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
@ -25,15 +25,15 @@ from bda.forms import BaseBdaFormSet, TokenForm, ResellForm
|
||||||
@cof_required
|
@cof_required
|
||||||
def etat_places(request, tirage_id):
|
def etat_places(request, tirage_id):
|
||||||
tirage = get_object_or_404(Tirage, id=tirage_id)
|
tirage = get_object_or_404(Tirage, id=tirage_id)
|
||||||
spectacles1 = ChoixSpectacles.objetcs.filter(tirage=tirage
|
spectacles1 = ChoixSpectacle.objects.filter(spectacle__tirage=tirage
|
||||||
).filter(double_choice="1"
|
).filter(double_choice="1"
|
||||||
).all().values('spectacle','spectacle__title'
|
).all().values('spectacle','spectacle__title'
|
||||||
).annotate(total=models.Count('spectacle'))
|
).annotate(total=models.Count('spectacle'))
|
||||||
spectacles2 = ChoixSpectacles.objetcs.filter(tirage=tirage
|
spectacles2 = ChoixSpectacle.objects.filter(spectacle__tirage=tirage
|
||||||
).exclude(double_choice="1"
|
).exclude(double_choice="1"
|
||||||
).all().values('spectacle','spectacle__title'
|
).all().values('spectacle','spectacle__title'
|
||||||
).annotate(total=models.Count('spectacle'))
|
).annotate(total=models.Count('spectacle'))
|
||||||
spectacles = Spectacle.objects.filter(tirage__id=num_tirage).all()
|
spectacles = Spectacle.objects.filter(tirage=tirage).all()
|
||||||
spectacles_dict = {}
|
spectacles_dict = {}
|
||||||
total = 0
|
total = 0
|
||||||
for spectacle in spectacles:
|
for spectacle in spectacles:
|
||||||
|
|
Loading…
Reference in a new issue