mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2024-11-01 03:25:49 +00:00
17 lines
517 B
Python
17 lines
517 B
Python
from django.conf import settings
|
|
|
|
|
|
def placeholders(schedule, talk):
|
|
return {
|
|
"CODE": talk.submission.code,
|
|
"EVENT_SLUG": str(schedule.event.slug),
|
|
"FEEDBACK_URL": "{}{}".format(
|
|
schedule.event.custom_domain or settings.SITE_URL,
|
|
talk.submission.urls.feedback,
|
|
),
|
|
"TALK_SLUG": talk.frab_slug,
|
|
"TALK_URL": "{}{}".format(
|
|
schedule.event.custom_domain or settings.SITE_URL,
|
|
talk.submission.urls.public,
|
|
),
|
|
}
|