mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2024-11-16 03:13:52 +00:00
7 lines
176 B
Python
7 lines
176 B
Python
|
def placeholders(schedule, talk):
|
||
|
return {
|
||
|
"EVENT_SLUG": str(schedule.event.slug),
|
||
|
"TALK_SLUG": talk.frab_slug,
|
||
|
"CODE": talk.submission.code,
|
||
|
}
|