{% extends "wiki/create_root.html" %} {% load i18n wiki_tags %} {% block wiki_contents %}

{% trans "Congratulations!" %}

{% trans "You have django-wiki installed and it seems to be working. But there are no articles yet." %}

{% if not user.is_superuser %}

{% trans "Not to worry! You simply have to login with a superuser account and create the first article in the root of the URL hierarchy." %}

{% login_url as wiki_login_url %} {% if wiki_login_url %} {% trans "Click here to login" %} {% endif %} {% else %}

{% trans "But since you're logged in as a superuser, we should really get started..." %}

{% trans "Yes, I'll go and create the first article" %} {% trans "No thanks, I'd rather read the documentation" %} {% endif %}
{% endblock %}