Skip to content

Commit

Permalink
fix: invalid template rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGrace2282 committed Oct 27, 2024
1 parent b227f6e commit 681431c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion intranet/templates/eighth/emails/students_stickied.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{% endwith %}

<p>
You have been stickied into {{ activity.activity.name }} on {{ activity.date }} ({{ activity.block_letter }}).
You have been stickied into {{ activity.activity.name }} on {{ activity.block.date }} ({{ activity.block.block_letter }}).
</p>

{% include "email_footer.txt" %}
Expand Down
2 changes: 1 addition & 1 deletion intranet/templates/eighth/emails/students_stickied.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
You have been stickied into {{ activity.activity.name }} on {{ activity.date }} ({{ activity.block_letter }}).
You have been stickied into {{ activity.activity.name }} on {{ activity.block.date }} ({{ activity.block.block_letter }}).
2 changes: 1 addition & 1 deletion intranet/templates/eighth/emails/students_unstickied.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{% endwith %}

<p>
You have been unstickied from {{ activity.activity.name }} on {{ activity.date }} ({{ activity.block_letter }}).
You have been unstickied from {{ activity.activity.name }} on {{ activity.block.date }} ({{ activity.block.block_letter }}).
Please select a new eighth period to sign up for.
<br>
Have a nice day!
Expand Down
2 changes: 1 addition & 1 deletion intranet/templates/eighth/emails/students_unstickied.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
You have been unstickied from {{ activity.activity.name }} on {{ activity.date }} ({{ activity.block_letter }}).
You have been unstickied from {{ activity.activity.name }} on {{ activity.block.date }} ({{ activity.block.block_letter }}).
Please select a new eighth period to sign up for.

Have a nice day!

0 comments on commit 681431c

Please sign in to comment.