1
0
Fork 0
mirror of https://github.com/Kunsi/pretalx-plugin-broadcast-tools synced 2024-07-01 15:53:22 +00:00
pretalx-plugin-broadcast-tools/pretalx_broadcast_tools/utils/placeholders.py

7 lines
176 B
Python
Raw Normal View History

def placeholders(schedule, talk):
return {
"EVENT_SLUG": str(schedule.event.slug),
"TALK_SLUG": talk.frab_slug,
"CODE": talk.submission.code,
}