mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2024-11-01 00:45:49 +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(),
|
.isoformat(),
|
||||||
"slug": talk.frab_slug,
|
"slug": talk.frab_slug,
|
||||||
"title": talk.submission.title,
|
"title": talk.submission.title,
|
||||||
"persons": sorted(
|
"persons": [
|
||||||
{
|
person.get_display_name()
|
||||||
person.get_display_name()
|
for person in talk.submission.speakers.all()
|
||||||
for person in talk.submission.speakers.all()
|
],
|
||||||
}
|
|
||||||
),
|
|
||||||
"track": {
|
"track": {
|
||||||
"color": talk.submission.track.color,
|
"color": talk.submission.track.color,
|
||||||
"name": str(talk.submission.track.name),
|
"name": str(talk.submission.track.name),
|
||||||
|
|
Loading…
Reference in a new issue