@@ 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",
@@ 1,10 1,12 @@
{% load i18n wiki_macro_tags %}
{% if article_children %}
- <h3>{% trans "Articles" %}</h3>
+ <h3>{% trans "Article index" %}</h3>
<div class="article-list">
{% for child in article_children %}
{% article_list child depth %}
+ {% empty %}
+ <i>{% trans "Nothing below this level" %}</i>
{% endfor %}
</div>
{% endif %}