]> gitweb.fperrin.net Git - djsite.git/blobdiff - quotes/templates/quotations/many.html
Initial draft of the quotes app
[djsite.git] / quotes / templates / quotations / many.html
diff --git a/quotes/templates/quotations/many.html b/quotes/templates/quotations/many.html
new file mode 100644 (file)
index 0000000..63d4f03
--- /dev/null
@@ -0,0 +1,9 @@
+{% extends 'quotations/base.html' %}
+
+{% block body %}
+
+{% for quote in quotes %}
+  {% include "quotations/display.html" with quote=quote %}
+{% endfor %}
+
+{% endblock %}