]> gitweb.fperrin.net Git - djsite.git/blobdiff - quotes/templates/quotes/author.html
On the author page, don't display the author notes for each quote
[djsite.git] / quotes / templates / quotes / author.html
index c3377ceeb3d7fdcb7d3b150e83c2cefbd7ef197e..60dbafa577c45b4cf83ff3ef9354d096b745b5ff 100644 (file)
@@ -4,14 +4,14 @@
 
 {% block body %}
 
-
 <h1>{{ author.name }}</h1>
 
+{% include "quotes/author_notes.html" with author=author %}
+
 <p>All the quotes for {{ author.name }}:<p>
 
 {% for quote in author.quote_set.all %}
-  {% include "quotes/display.html" with quote=quote %}
+  {% include "quotes/display.html" with quote=quote skip_author_notes=True %}
 {% endfor %}
 
-
 {% endblock %}