diff options
author | luxagraf <sng@luxagraf.net> | 2014-05-08 19:44:58 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2014-05-08 19:44:58 -0400 |
commit | 58e402a077c710c04934e3a7ddc25883427d1f64 (patch) | |
tree | 485506e3c1805a793f2d5920751f53c400b08aac /design/templates/details/entry.html | |
parent | 5f430f31474847ac50fa017dc1397c3bde2d140d (diff) |
added birding app, fixed a few python-related bugs throughout the code base.
Diffstat (limited to 'design/templates/details/entry.html')
-rw-r--r-- | design/templates/details/entry.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/design/templates/details/entry.html b/design/templates/details/entry.html index 5784831..19039d9 100644 --- a/design/templates/details/entry.html +++ b/design/templates/details/entry.html @@ -1,5 +1,5 @@ {% extends 'base.html' %} -{% load typogrify %} +{% load typogrify_tags %} {% block pagetitle %}{{object.title|title|smartypants|safe}} - Luxagraf, Writing{%comment%}{% if object.country_name == "United States" %}{{object.location_name|smartypants|safe}}, {{object.state_name}}{%else%}{{object.location_name|smartypants|safe}}, {{object.country_name}}{%endif%}{%endcomment%}{% endblock %} @@ -28,7 +28,7 @@ class="{%if t == 0 or t == 2 %}single{%endif%}{%if t == 1 or t == 3 %}double{%en </aside> </header> <div class="post-body{% with object.template_name as t %}{%if t == 0 or t == 2 %}-single{%endif%}{%if t == 1 or t == 3 %}-double{%endif%}{%endwith%}"> - {{object.body_html|smartypants|widont|safe}} + {{object.body_html|safe|smartypants|widont}} </div>{%if object.template_name == 1 %} <div class="clearfix"></div>{%endif%}{%if object.template_name == 3 %}<div class="clearfix"></div>{%endif%} {%comment%} |