Skip to content

Commit 319f3ca

Browse files
authored
Fix invalid end tag in email template (#4633)
The `hypha/apply/activity/templates/messages/email/project_final_approval.html` template incorrectly uses `{% blocktrans %}...{% blocktrans %}` instead of `{% blocktrans %}...{% endblocktrans %}`. I found this while trying to run `makemessages` to generate the translatable strings for our project.
1 parent d70023d commit 319f3ca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hypha/apply/activity/templates/messages/email/project_final_approval.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{% block salutation %}{% endblock %}
55

66
{% block content %}{# fmt:off #}
7-
{% blocktrans with title=source.title_text_display %}The project "{{title}}" is awaiting final approval.{% blocktrans %}
7+
{% blocktrans with title=source.title_text_display %}The project "{{title}}" is awaiting final approval.{% endblocktrans %}
88

99
{% trans "Approve the project here" %}: {{ request.scheme }}://{{ request.get_host }}{% url 'apply:projects:approval' pk=source.submission.pk %}
1010

0 commit comments

Comments
 (0)