mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2024-11-01 00:05:50 +00:00
do not sort speaker names in schedule
This commit is contained in:
parent
2da018775b
commit
327981eade
1 changed files with 4 additions and 6 deletions
|
@ -112,12 +112,10 @@ class BroadcastToolsScheduleView(EventPermissionRequired, ScheduleMixin, View):
|
|||
.isoformat(),
|
||||
"slug": talk.frab_slug,
|
||||
"title": talk.submission.title,
|
||||
"persons": sorted(
|
||||
{
|
||||
"persons": [
|
||||
person.get_display_name()
|
||||
for person in talk.submission.speakers.all()
|
||||
}
|
||||
),
|
||||
],
|
||||
"track": {
|
||||
"color": talk.submission.track.color,
|
||||
"name": str(talk.submission.track.name),
|
||||
|
|
Loading…
Reference in a new issue