|
@@ -1,4 +1,5 @@
|
1
|
1
|
{% extends "oscar/base.html" %}
|
|
2
|
+{% block title %}{{ _('stats') }} - {% endblock %}
|
2
|
3
|
{% block content %}
|
3
|
4
|
<div class="container-fluid">
|
4
|
5
|
<h1>{{ _('Engine stats') }}</h1>
|
|
@@ -19,6 +20,14 @@
|
19
|
20
|
</div>
|
20
|
21
|
</div>
|
21
|
22
|
{% endfor %}
|
|
23
|
+ {% if not stat_category %}
|
|
24
|
+ <div class="col-sm-12 col-md-12">
|
|
25
|
+ <div class="alert alert-info" role="alert">
|
|
26
|
+ <strong>{{ _('Heads up!') }}</strong>
|
|
27
|
+ {{ _('There is currently no data available.') }}
|
|
28
|
+ </div>
|
|
29
|
+ </div>
|
|
30
|
+ {% endif %}
|
22
|
31
|
</div>
|
23
|
32
|
</div>
|
24
|
33
|
{% endfor %}
|