]> gitweb.fperrin.net Git - djsite.git/commitdiff
Fix tag errors found by the new UT
authorFrédéric Perrin <fred@fperrin.net>
Tue, 18 Oct 2016 22:52:50 +0000 (23:52 +0100)
committerFrédéric Perrin <fred@fperrin.net>
Tue, 18 Oct 2016 22:52:50 +0000 (23:52 +0100)
quotes/templates/quotes/author.html
quotes/templates/quotes/tag.html
quotes/templates/quotes/work.html

index be5476e17b448194a922b1d0ffdde0aed06af73d..755428644065a441293df000d404ba88d46039c4 100644 (file)
@@ -8,7 +8,7 @@
 
 {% include "quotes/author_notes.html" with author=author %}
 
-<p>All the quotes for {{ author.name }}:<p>
+<p>All the quotes for {{ author.name }}:</p>
 
 {% for work in author.work_set.all %}
   {% for quote in work.quote_set.all %}
index 3f3eb06a9b16cfbd2111d15c265569133f0f35e9..52497dc241e21d4cce91f4274a7100eb849ed385 100644 (file)
@@ -4,7 +4,7 @@
 
 {% block body %}
 
-<p>All the quotes tagged with "{{ tag.tag }}":<p>
+<p>All the quotes tagged with "{{ tag.tag }}":</p>
 
 {% for quote in tag.quote_set.all %}
   {% include "quotes/display.html" with quote=quote %}
index fca254869202a6a64dfc8c4123fc1f1212c649d9..4d651a493ace4b7a5fe18eff731d7df52a147457 100644 (file)
@@ -6,7 +6,7 @@
 {% include "quotes/work_notes.html" with work=work %}
 {% include "quotes/author_notes.html" with author=work.author %}
 
-<p>All the quotes for {{ work.name }}:<p>
+<p>All the quotes for {{ work.name }}:</p>
 {% for quote in work.quote_set.all %}
   {% include "quotes/display.html" with quote=quote skip_author_notes=True skip_work_notes=True %}
 {% endfor %}