summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/index.html
blob: d1000396aa49e3f132556c1cdd511cc0d9f0a2f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends "base.html" %}
{% load i18n %}
{% block content %}<div id="welcome" class="container">
    <h2>{% if welcome_title %}{{welcome_title}}{% else %}{% trans "Welcome in Ishtar, open source software for management and inventory of archaeological data" %}{% endif %}</h2>
    <div class="row">
        {% if display_random_image %}
        {{random_image}}
        {% endif %}
        <div class="col col-lg-9">
            <div class="card">
                <div class="card-body">
                {% if homepage %}{{homepage|safe}}{% else %}{% include "welcome.html" %}{% endif %}
                </div>
            </div>
        </div>
        {% if display_statistics %}
        <div class="col col-lg-12 lead mt-4">
            {% for label, number in statistics %}
            <span class="badge badge-secondary">{{label}} &nbsp;<span class="badge badge-light">{{number}}</span></span>
            {% endfor %}
        </div>
        {% endif %}
    </div>
</div>{% endblock %}