X-Git-Url: https://gitweb.fperrin.net/?a=blobdiff_plain;f=quotes%2Ftemplates%2Fquotes%2Fall.html;fp=quotes%2Ftemplates%2Fquotes%2Fall.html;h=f15296f827712ce7b24a0bc7557c9ed2b5a6c6ae;hb=f978cf95dcb4b6f1d6d81e94b504d360d2489f54;hp=0000000000000000000000000000000000000000;hpb=1403f44199bde09f56e466285e00462e88e344fd;p=djsite.git diff --git a/quotes/templates/quotes/all.html b/quotes/templates/quotes/all.html new file mode 100644 index 0000000..f15296f --- /dev/null +++ b/quotes/templates/quotes/all.html @@ -0,0 +1,11 @@ +{% extends 'quotes/base.html' %} + +{% block title %}All the quotes in the database{% endblock %} + +{% block body %} + +{% for quote in quotes %} + {% include "quotes/display.html" with quote=quote %} +{% endfor %} + +{% endblock %}