Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix template rendering for compatibility with Django 1.10+ #70

Merged
merged 7 commits into from
Nov 4, 2016
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
set autoescape off explicitly in default plain text templates
  • Loading branch information
jacobwegner committed Nov 4, 2016
commit 4a947ff23d13c9cd49a3fc9c645ded98206a42d5
2 changes: 1 addition & 1 deletion pinax/notifications/templates/pinax/notifications/full.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{% load i18n %}{% blocktrans %}{{ notice }}{% endblocktrans %}
{% autoescape off %}{% load i18n %}{% blocktrans %}{{ notice }}{% endblocktrans %}{% endautoescape %}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{% load i18n %}{% blocktrans %}{{ notice }}{% endblocktrans %}
{% autoescape off %}{% load i18n %}{% blocktrans %}{{ notice }}{% endblocktrans %}{% endautoescape %}