From: Frédéric Perrin Date: Tue, 18 Oct 2016 22:52:50 +0000 (+0100) Subject: Fix tag errors found by the new UT X-Git-Url: http://gitweb.fperrin.net/?p=djsite.git;a=commitdiff_plain;h=809334de67823bbda3f1c95ccbb719bf7eb825e4 Fix tag errors found by the new UT --- diff --git a/quotes/templates/quotes/author.html b/quotes/templates/quotes/author.html index be5476e..7554286 100644 --- a/quotes/templates/quotes/author.html +++ b/quotes/templates/quotes/author.html @@ -8,7 +8,7 @@ {% include "quotes/author_notes.html" with author=author %} -

All the quotes for {{ author.name }}:

+

All the quotes for {{ author.name }}:

{% for work in author.work_set.all %} {% for quote in work.quote_set.all %} diff --git a/quotes/templates/quotes/tag.html b/quotes/templates/quotes/tag.html index 3f3eb06..52497dc 100644 --- a/quotes/templates/quotes/tag.html +++ b/quotes/templates/quotes/tag.html @@ -4,7 +4,7 @@ {% block body %} -

All the quotes tagged with "{{ tag.tag }}":

+

All the quotes tagged with "{{ tag.tag }}":

{% for quote in tag.quote_set.all %} {% include "quotes/display.html" with quote=quote %} diff --git a/quotes/templates/quotes/work.html b/quotes/templates/quotes/work.html index fca2548..4d651a4 100644 --- a/quotes/templates/quotes/work.html +++ b/quotes/templates/quotes/work.html @@ -6,7 +6,7 @@ {% include "quotes/work_notes.html" with work=work %} {% include "quotes/author_notes.html" with author=work.author %} -

All the quotes for {{ work.name }}:

+

All the quotes for {{ work.name }}:

{% for quote in work.quote_set.all %} {% include "quotes/display.html" with quote=quote skip_author_notes=True skip_work_notes=True %} {% endfor %}