Select Git revision
CHANGELOG.md
-
semantic-release-bot authored
## [0.19.1](https://github.com/saltstack-formulas/systemd-formula/compare/v0.19.0...v0.19.1) (2021-06-23) ### Bug Fixes * **units:** start `path` units as well as `service` units ([99b48639](https://github.com/saltstack-formulas/systemd-formula/commit/99b48639b3750a26c7c55d4f249bef6d65521ba5)) ### Continuous Integration * **kitchen+gitlab:** remove Ubuntu 16.04 & Fedora 32 (EOL) [skip ci] ([9034daed](https://github.com/saltstack-formulas/systemd-formula/commit/9034daed4520c58f67b10c544a93857f841eebaf)) * add `arch-master` to matrix and update `.travis.yml` [skip ci] ([c2c7e8b7](https://github.com/saltstack-formulas/systemd-formula/commit/c2c7e8b72e3d5ddc885504bd774db74b46533be4))
semantic-release-bot authored## [0.19.1](https://github.com/saltstack-formulas/systemd-formula/compare/v0.19.0...v0.19.1) (2021-06-23) ### Bug Fixes * **units:** start `path` units as well as `service` units ([99b48639](https://github.com/saltstack-formulas/systemd-formula/commit/99b48639b3750a26c7c55d4f249bef6d65521ba5)) ### Continuous Integration * **kitchen+gitlab:** remove Ubuntu 16.04 & Fedora 32 (EOL) [skip ci] ([9034daed](https://github.com/saltstack-formulas/systemd-formula/commit/9034daed4520c58f67b10c544a93857f841eebaf)) * add `arch-master` to matrix and update `.travis.yml` [skip ci] ([c2c7e8b7](https://github.com/saltstack-formulas/systemd-formula/commit/c2c7e8b72e3d5ddc885504bd774db74b46533be4))
dashboard.html 3.92 KiB
{% extends 'home/base.html' %}
{% load staticfiles %}
{% block nav-db-general %}class="active"{% endblock %}
{% block title-extra %}Dashboard{% endblock %}
{% block home-content %}
<div class="row">
<div class="col-sm-6 col-md-3">
<div class="numeric-info">
<span class="number">{{ all_minions|length }}</span>
<span class="description">Minions</span>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="numeric-info">
<span class="number">{{ all_networks|length }}</span>
<span class="description">Networks</span>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="numeric-info">
<span class="number">{{ all_domains|length }}</span>
<span class="description">Domains</span>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="numeric-info">
<span class="number">{{ all_users|length }}</span>
<span class="description">Users</span>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Fullest 5 Minions</h3>
</div>
<table class="table">
<thead>
<tr>
<th>Minion ID</th>
<th>Percentage</th>
</tr>
</thead>
<tbody>
{% for m in w5_fullest_minions %}
<tr>
<td><a href="{% url 'minion-detail' m.fqdn %}">{{ m.fqdn }}</a></td>
<td>{{ m.fullest_partition_percentage }} %</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
<div class="col-lg-4">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Worst 5 outdated Minions</h3>
</div>
<table class="table">
<thead>
<tr>
<th>Minion ID</th>
<th>Packages</th>
</tr>
</thead>
<tbody>
{% for m in w5_outdated_minions %}
<tr>
<td><a href="{% url 'minion-detail' m.fqdn %}">{{ m.fqdn }}</a></td>
<td>{{ m.outdated_package_count }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
<div class="col-lg-4">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Worst 5 Certs</h3>
</div>
<table class="table">
<thead>
<tr>
<th>Domain</th>
<th>Grade</th>
</tr>
</thead>
<tbody>
{% for d in w5_domain_ssl_grades %}
<tr>
<td><a href="{% url 'domain-detail' d.fqdn %}">{{ d.fqdn }}</a></td>
<td><span class="ssllabgrade {{ d.worst_grade|first|lower }}">{{ d.worst_grade }}</span></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
{% endblock %}