@@ -54,7 +54,7 @@ class EventList(ListView):
54
54
context_object_name = "eventos_pasados"
55
55
56
56
def get_context_data (self , ** kwargs ):
57
- context = super (EventList , self ).get_context_data (** kwargs )
57
+ context = super ().get_context_data (** kwargs )
58
58
context ['eventos_proximos' ] = Event .objects .filter (
59
59
end_at__gte = timezone .now ()).order_by ('start_at' )
60
60
@@ -86,7 +86,7 @@ def user_participation_details(self):
86
86
return details
87
87
88
88
def get_context_data (self , ** kwargs ):
89
- context = super (EventDetail , self ).get_context_data (** kwargs )
89
+ context = super ().get_context_data (** kwargs )
90
90
context .update (self .user_participation_details ())
91
91
return context
92
92
@@ -96,7 +96,7 @@ class EventCreate(LoginRequiredMixin, EventMixin, CreateView):
96
96
97
97
def form_valid (self , form ):
98
98
form .instance .owner = self .request .user
99
- return super (EventCreate , self ).form_valid (form )
99
+ return super ().form_valid (form )
100
100
101
101
102
102
class EventUpdate (LoginRequiredMixin , EventMixin , OwnedObject , UpdateView ):
@@ -215,7 +215,7 @@ def get_success_url(self):
215
215
216
216
217
217
class EventParticipationList (LoginRequiredMixin , ListView ):
218
- http_method_names = [u 'get' ]
218
+ http_method_names = ['get' ]
219
219
context_object_name = 'participants'
220
220
221
221
def __init__ (self , * args , ** kwargs ):
@@ -224,7 +224,7 @@ def __init__(self, *args, **kwargs):
224
224
225
225
def get_context_data (self , ** kwargs ):
226
226
"""Overwrite get_context_data to add the related Event's ID to the template context."""
227
- context = super (EventParticipationList , self ).get_context_data (** kwargs )
227
+ context = super ().get_context_data (** kwargs )
228
228
context ['event' ] = self .event
229
229
return context
230
230
@@ -246,7 +246,7 @@ class EventParticipationDelete(LoginRequiredMixin, EventParticipationMixin, Dele
246
246
def get_object (self , * args , ** kwargs ):
247
247
"""A User can delete its participation to an Event. The Event owner can also do that."""
248
248
249
- inscription = super (EventParticipationDelete , self ).get_object (* args , ** kwargs )
249
+ inscription = super ().get_object (* args , ** kwargs )
250
250
if self .request .user not in [inscription .user , inscription .event .owner ]:
251
251
raise Http404 ()
252
252
return inscription
@@ -256,7 +256,7 @@ class EventParticipationDownload(CSVResponseMixin, EventParticipationList):
256
256
def get_csv_filename (self ):
257
257
event = self .event .name .lower ().replace (' ' , '_' )
258
258
timestamp = timezone .now ().isoformat ().replace (':' , '' ).replace ('-' , '' ).split ('.' )[0 ]
259
- return '{0 }-{1 }.csv'. format ( event , timestamp )
259
+ return f' { event } -{ timestamp } .csv'
260
260
261
261
def get_rows (self ):
262
262
columns = ('Nombre' , 'Correo electrónico' , 'Género' , 'Nivel' , 'Usuario PyAr' ,
0 commit comments