{% extends "wiki/base.html" %} {% load i18n %} {% load custom_date wlprofile %} {% block title %}Wiki Index - {{ block.super }}{% endblock %} {% block content %}

Wiki: Index

{% if articles %}

There are actually {{ articles|length }} articles in this wiki:

{% for article in articles %} {% endfor %}
{% trans "Page" %} {% trans "Summary" %} {% trans "Last update" %}
{{ article.title }} {{ article.summary }} {{ article.last_update|custom_date:user }}
{% else %}

{% trans "Create a new article" %}.

{% endif %}
{% endblock %}