Skip to content

Commit

Permalink
Use templates to generate year-specific items
Browse files Browse the repository at this point in the history
  • Loading branch information
yoe committed Feb 18, 2020
1 parent a489159 commit c7764e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ansible/playbooks/roles/encoder-common/templates/config.j2
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ $email_from = '[email protected]';
# A filename of a Mojo::Template template to process, returning the email body. Required if notify_actions includes email.
$notify_email_template = '/srv/sreview/assets/notify-email.ep';

$notify_email_subject = "Your FOSDEM 2020 talk titled '<%== \$title %>'\\";
$notify_email_subject = "Your {{ event.fullname }} talk titled '<%== \$title %>'\\";

$announce_email_template = '/srv/sreview/assets/announce-email.ep';

$announce_email_subject = "RELEASED: Your FOSDEM 2020 talk titled '<%== \$title %>'\\";
$announce_email_subject = "RELEASED: Your {{ event.fullname }} talk titled '<%== \$title %>'\\";

# The default event to handle in the webinterface. Ignored by all other parts of sreview.
$event = 'FOSDEM 2020';
$event = '{{ event.fullname }}';

$extra_profiles = {
FOSDEM => {
Expand Down

0 comments on commit c7764e9

Please sign in to comment.