Code template when no saas exists.

This commit is contained in:
Santiago Lamora 2020-01-20 18:19:55 +01:00
parent 5495808d9c
commit d43b849d49
1 changed files with 12 additions and 0 deletions

View File

@ -38,6 +38,18 @@
</div>
</div>
</div>
{% 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-fire fa-5x"></i></p>
{# Translators: saas page when there isn't any saas. #}
<h5 class="card-title text-dark">{% trans "Ooops! Looks like there is nothing here!" %}</h5>
</div>
</div>
</div>
</div>
{% endfor %}
{% endblock %}