Code template when no database exists.

This commit is contained in:
Santiago Lamora 2020-01-20 17:59:49 +01:00
parent d0b4ef2873
commit 442c2a3d19
1 changed files with 15 additions and 1 deletions

View File

@ -48,7 +48,21 @@
</div>
</div>
{% endfor %}
{% empty %}
<div class="row">
<div class="col-md-4">
<div class="card service-card shadow p-3 mb-5 bg-white rounded">
<div class="card-body text-center">
<p class="mb-4"><i class="fas fa-database fa-5x"></i></p>
{# Translators: database page when there isn't any database. #}
<h5 class="card-title text-dark">{% trans "Ooops! Looks like there is nothing here!" %}</h5>
</div>
</div>
</div>
</div>
{% endfor %}
{% if object_list|length > 0 %}
{% include "musician/components/paginator.html" %}
{% endif %}
{% endblock %}