{% extends "wiki/base.html" %} {% load i18n %} {% load wiki_tags %} {% load group_tags %} {% load pagination_tags %} {% load humanize %} {% block head_title %}Wiki for {{ group.name }}{% endblock %} {% block body %} {% wiki_title group %} {% include "wiki/searchbox.html" %} {% autopaginate articles %} {% regroup articles by created_at.date as articles_by_creation_date %} {% if articles %} {% for date in articles_by_creation_date %}

{{ date.grouper|naturalday:_("MONTH_DAY_FORMAT")|capfirst }}

{% for article in date.list %} {{ article.title }}
{% endfor %} {% endfor %} {% endif %} {% if allow_write %}

Start a NewArticle.

{% endif %} {% endblock %}