Formattage et robustesse

- Ajoute des espaces après les `:` dans la déclaration des
  dictionnaires.
- Change le `= 2` et `+= 1` pour rendre le code plus résistant à une
  éventuelle mise à jour.
This commit is contained in:
Martin Pépin 2016-06-15 22:37:23 +02:00
parent 38acbd82d1
commit afc4718f2d

View file

@ -296,15 +296,15 @@ def spectacle(request, tirage_id, spectacle_id):
participants = {}
for attrib in attributions:
participant = attrib.participant
participant_info = {'lastname':participant.user.last_name,
participant_info = {'lastname': participant.user.last_name,
'name': participant.user.get_full_name,
'username':participant.user.username,
'email':participant.user.email,
'given':attrib.given,
'paid':participant.paid,
'nb_places':1}
'username': participant.user.username,
'email': participant.user.email,
'given': attrib.given,
'paid': participant.paid,
'nb_places': 1}
if participant.id in participants:
participants[participant.id]['nb_places'] = 2
participants[participant.id]['nb_places'] += 1
else:
participants[participant.id] = participant_info