membershipworks: Use unique name for sum of count of EventExt.meeting_times
This commit is contained in:
parent
df621988f6
commit
599b7f7785
@ -433,7 +433,7 @@ class EventExtQuerySet(models.QuerySet["EventExt"]):
|
||||
return method(
|
||||
count__sum=Sum("count", filter=F("occurred")),
|
||||
instructor__count=Count("instructor", distinct=True, filter=F("occurred")),
|
||||
meeting_times__count=Count("meeting_times__count", filter=F("occurred")),
|
||||
meeting_times__count__sum=Sum("meeting_times__count", filter=F("occurred")),
|
||||
duration__sum=Sum("duration", filter=F("occurred")),
|
||||
person_hours__sum=Sum("person_hours", filter=F("occurred")),
|
||||
event_count=Count("eid", filter=F("occurred")),
|
||||
|
@ -31,7 +31,7 @@
|
||||
<td>{{ year.canceled_event_count }}</td>
|
||||
<td>{{ year.count__sum }}</td>
|
||||
<td>{{ year.instructor__count }}</td>
|
||||
<td>{{ year.meeting_times__count }}</td>
|
||||
<td>{{ year.meeting_times__count__sum }}</td>
|
||||
<td>{{ year.duration__sum|duration_as_hours }}</td>
|
||||
<td>{{ year.person_hours__sum|duration_as_hours }}</td>
|
||||
</tr>
|
||||
|
@ -32,7 +32,7 @@
|
||||
<td>{{ month.canceled_event_count }}</td>
|
||||
<td>{{ month.count__sum }}</td>
|
||||
<td>{{ month.instructor__count }}</td>
|
||||
<td>{{ month.meeting_times__count }}</td>
|
||||
<td>{{ month.meeting_times__count__sum }}</td>
|
||||
<td>{{ month.duration__sum|duration_as_hours }}</td>
|
||||
<td>{{ month.person_hours__sum|duration_as_hours }}</td>
|
||||
</tr>
|
||||
|
Loading…
Reference in New Issue
Block a user