From f9a46f1c97d0ab882984325b9a1629a8daab750c Mon Sep 17 00:00:00 2001 From: benjaoming Date: Sun, 3 Feb 2013 17:31:54 +0100 Subject: [PATCH] Note on python 2.5 and improve article list --- setup.py | 2 +- .../macros/templates/wiki/plugins/macros/article_list.html | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 8d800c33..c7c5900f 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ package_data = dict( setup( name = "wiki", - version = "0.0.12", + version = "0.0.13", author = "Benjamin Bach", author_email = "benjamin@overtag.dk", url = "http://www.django-wiki.org", diff --git a/wiki/plugins/macros/templates/wiki/plugins/macros/article_list.html b/wiki/plugins/macros/templates/wiki/plugins/macros/article_list.html index 829e55ae..b75e320c 100644 --- a/wiki/plugins/macros/templates/wiki/plugins/macros/article_list.html +++ b/wiki/plugins/macros/templates/wiki/plugins/macros/article_list.html @@ -1,10 +1,12 @@ {% load i18n wiki_macro_tags %} {% if article_children %} -

{% trans "Articles" %}

+

{% trans "Article index" %}

{% for child in article_children %} {% article_list child depth %} + {% empty %} + {% trans "Nothing below this level" %} {% endfor %}
{% endif %} -- 2.45.2