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