Commit b6687296 authored by Michal Čihař's avatar Michal Čihař

Fix template syntax error

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 59cd7bb3
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
</p> </p>
<p> <p>
{% blocktrans and user.first_name as username %}{{ username }} has just made a first contribution on {{ translation }} at {{ site_title }}.{% endblocktrans %} {% blocktrans with user.first_name as username %}{{ username }} has just made a first contribution on {{ translation }} at {{ site_title }}.{% endblocktrans %}
<p> <p>
{% include "mail/footer.html" %} {% include "mail/footer.html" %}
......
{% load url from future %}{% load i18n %}{% load translations %}{% autoescape off %}{% filter wordwrap:72 %}{% trans "Hi," %} {% load url from future %}{% load i18n %}{% load translations %}{% autoescape off %}{% filter wordwrap:72 %}{% trans "Hi," %}
{% blocktrans and user.first_name as username %}{{ username }} has just made a first contribution on {{ translation }} at {{ site_title }}.{% endblocktrans %} {% blocktrans with user.first_name as username %}{{ username }} has just made a first contribution on {{ translation }} at {{ site_title }}.{% endblocktrans %}
{% endfilter%}{% endautoescape %}{% include "mail/footer.txt" %} {% endfilter%}{% endautoescape %}{% include "mail/footer.txt" %}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment