From 809334de67823bbda3f1c95ccbb719bf7eb825e4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Perrin?= Date: Tue, 18 Oct 2016 23:52:50 +0100 Subject: [PATCH] Fix tag errors found by the new UT --- quotes/templates/quotes/author.html | 2 +- quotes/templates/quotes/tag.html | 2 +- quotes/templates/quotes/work.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 %} -- 2.43.0