{% extends "base.html" %} {% load i18n %} {% block content %}

{% if welcome_title %}{{welcome_title}}{% else %}{% trans "Welcome in Ishtar, open source software for management and inventory of archaeological data" %}{% endif %}

{% if display_random_image %} {{random_image}} {% endif %}
{% if homepage %}{{homepage|safe}}{% else %}{% include "welcome.html" %}{% endif %}
{% if display_statistics %}
{% for label, number in statistics %} {{label}}  {{number}} {% endfor %}
{% endif %}
{% endblock %}