1
0
Fork 0
mirror of https://github.com/Kunsi/pretalx-plugin-broadcast-tools synced 2024-05-16 14:12:33 +00:00
pretalx-plugin-broadcast-tools/pretalx_broadcast_tools/utils/placeholders.py

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,
}