From 73db0d8ac2cd0bb7cf5109e38e2be96d0467d830 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Mon, 13 Apr 2015 14:29:21 -0500 Subject: Use UTF-8 copyright sign; save a few bytes Signed-off-by: Dan McGee --- templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'templates') diff --git a/templates/base.html b/templates/base.html index 15bb7e28..f6fe99e5 100644 --- a/templates/base.html +++ b/templates/base.html @@ -69,7 +69,7 @@ {% endblock %} + {% block script_block %}{% endblock %} -- cgit v1.2.3 From ff1359050f686437b6078e2b12948674d2f7388f Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Fri, 5 Jun 2015 08:15:32 -0500 Subject: Tweak display of todolist descriptions Indent, call out, and add some borders, among other things. Signed-off-by: Dan McGee --- templates/todolists/view.html | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) (limited to 'templates') diff --git a/templates/todolists/view.html b/templates/todolists/view.html index 0045390c..ec203b39 100644 --- a/templates/todolists/view.html +++ b/templates/todolists/view.html @@ -22,16 +22,18 @@ {% endif %} -

{{ list.created|date }} - {{ list.creator.get_full_name }}

+
{{ list.created|date }} - {{ list.creator.get_full_name }}
-
{{list.description|urlize|linebreaks}}
- -

Link to lists of pkgbase values:

- +
+ {{list.stripped_description|default:'(no description)'|urlize|linebreaks}} +
-

{{ list.packages|length }} total todo list package{{ list.packages|pluralize }} found.

+
+

Link to lists of pkgbase values:

+ +

Filter Todo List Packages

@@ -54,7 +56,10 @@
-
{{ list.packages|length }} todo list packages displayed.
+
+ {{ list.packages|length }} packages displayed out of + {{ list.packages|length }} total package{{ list.packages|pluralize }}. +
-- cgit v1.2.3