Skip to content
Snippets Groups Projects
Commit 9841f6cb authored by Thijs Kinkhorst's avatar Thijs Kinkhorst
Browse files

Improve statmeta template

parent 4ea81c64
No related branches found
No related tags found
No related merge requests found
...@@ -6,14 +6,15 @@ ...@@ -6,14 +6,15 @@
{% endblock %} {% endblock %}
{% block content %} {% block content %}
<h2>{{ pagetitle }}</h2>
<table id="statmeta"> <table id="statmeta">
{% if metadata is defined %} {% if metadata is defined %}
{% if metadata.lastrun is defined %} {% if metadata.lastrun is defined %}
<tr><td>Aggregator last run at</td><td>{{ metadata.lastrun }}</td></tr> <tr><td>Aggregator last run at</td><td>{{ metadata.lastrun|date }}</td></tr>
{% endif %} {% endif %}
{% if metadata.notBefore is defined %} {% if metadata.notBefore is defined %}
<tr><td>Aggregated data until</td><td>{{ metadata.notBefore }}</td></tr> <tr><td>Aggregated data until</td><td>{{ metadata.notBefore|date }}</td></tr>
{% endif %} {% endif %}
{% if metadata.memory is defined %} {% if metadata.memory is defined %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment