From c4f9c98369bf0e4e807cf24b7f34e9ce5c517d69 Mon Sep 17 00:00:00 2001 From: HighHarmonics Date: Sun, 18 Feb 2024 17:15:33 -0800 Subject: [PATCH] minor text edits for stream create email --- events/templates/emails/stream_create.txt | 11 ++++++++--- events/utils.py | 5 +++-- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/events/templates/emails/stream_create.txt b/events/templates/emails/stream_create.txt index bc906cf..00df961 100644 --- a/events/templates/emails/stream_create.txt +++ b/events/templates/emails/stream_create.txt @@ -1,17 +1,22 @@ Hi $name, -Thank you for signing up on "$event_name". +Thank you for signing up for a slot on the "$event_name" event. -Here's some general information about your stream: +Important information about your stream: * Starts at: $starts_at * Ends at: $ends_at * RTMP server URL: $rtmp_url * Stream key: $key -I will notify you again $preparation_time minutes before your stream starts, +You will be notified again $preparation_time minutes before your stream starts, so you can prepare. +Please review the Live Stream Guide closely. +It has important information to help you prepare for streaming. + +There is also a reference guide for OBS settings in GitHub. Both links are below. + $support_channels_text Cheers! diff --git a/events/utils.py b/events/utils.py index 18d77b3..5f4143a 100644 --- a/events/utils.py +++ b/events/utils.py @@ -26,8 +26,9 @@ def get_formatted_stream_timeframe(stream): def get_support_channels_test(stream): if stream.event.support_urls.exists(): return ( - "If you have any questions, please reach out to our support channels:\n" + "Streaming documentation and support links.\n + If you have any questions, please reach out to our support channel:\n" + "\n".join(f"* {u.name}: {u.url}" for u in stream.event.support_urls.all()) ) else: - return "If you have any questions, please reach out to our support channels" + return "If you have any questions, please reach out to our support channel."