Cosmetic cleanup

This commit is contained in:
Jeremy Stretch 2017-09-28 15:18:40 -04:00
parent e86ec75513
commit 87fb4af5cb

View File

@ -13,7 +13,7 @@
<th>Name</th> <th>Name</th>
<th>Status</th> <th>Status</th>
<th>Description</th> <th>Description</th>
<th>Last Run</th> <th class="text-right">Last Run</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -27,9 +27,9 @@
</td> </td>
<td>{{ report.description|default:"" }}</td> <td>{{ report.description|default:"" }}</td>
{% if report.result %} {% if report.result %}
<td>{{ report.result.created }}</td> <td class="text-right">{{ report.result.created }}</td>
{% else %} {% else %}
<td class="text-muted">Never</td> <td class="text-right text-muted">Never</td>
{% endif %} {% endif %}
</tr> </tr>
{% for method, stats in report.result.data.items %} {% for method, stats in report.result.data.items %}
@ -51,19 +51,23 @@
{% endfor %} {% endfor %}
</div> </div>
<div class="col-md-3"> <div class="col-md-3">
<ul class="list-group"> <div class="panel panel-default">
{% for module, module_reports in reports %} {% for module, module_reports in reports %}
<a href="#module.{{ module }}" class="list-group-item"><strong>{{ module|bettertitle }}</strong></a> <div class="panel-heading">
{% for report in module_reports %} <strong>{{ module|bettertitle }}</strong>
<a href="#report.{{ report.name }}" class="list-group-item"> </div>
{{ report.name }} <ul class="list-group">
<div class="pull-right"> {% for report in module_reports %}
{% include 'extras/inc/report_label.html' %} <a href="#report.{{ report.name }}" class="list-group-item">
</div> <i class="fa fa-list-alt"></i> {{ report.name }}
</a> <div class="pull-right">
{% endfor %} {% include 'extras/inc/report_label.html' %}
</div>
</a>
{% endfor %}
</ul>
{% endfor %} {% endfor %}
</ul> </div>
</div> </div>
</div> </div>
{% endblock %} {% endblock %}