From ca409654b1d66b663c175ca67c649813ac104b6d Mon Sep 17 00:00:00 2001 From: Dusty Phillips Date: Fri, 23 Jul 2010 09:05:43 -0600 Subject: Hide the details of the todo list until clicking Dan: don't load jQuery until late in the page load. Signed-off-by: Dan McGee --- templates/todolists/public_list.html | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'templates/todolists') diff --git a/templates/todolists/public_list.html b/templates/todolists/public_list.html index 78e5b51..f1220f6 100644 --- a/templates/todolists/public_list.html +++ b/templates/todolists/public_list.html @@ -1,10 +1,11 @@ {% extends "base.html" %} + {% block title %}Arch Linux - Todo Lists{% endblock %} {% block content %} -
+
{% for list in todo_lists %} -

{{list.name}}

+

{{list.name}}

{{list.description}}

    @@ -15,4 +16,12 @@
{% endfor %}
+{% load cdn %}{% jquery %} + {% endblock %} -- cgit v1.2.3-24-g4f1b