Compare commits

..

No commits in common. "a31c12e037feb0c96ca6820212b467adbedc707c" and "d3b5a754dd3ced8629ddaaba81821ff53aeaee53" have entirely different histories.

2 changed files with 4 additions and 25 deletions

View file

@ -2,9 +2,6 @@
## [Unreleased]
- 💄 — Show only not-OK domains by default in domains list, to reduce the load on browser
- ♿️ — Fix not-OK domains display if javascript is disabled
## 0.5.0
Date: 2024-09-26
@ -71,7 +68,7 @@ Date: 2024-06-24
- 💄📯 — Improve notifications and result(s) pages
- 🔊 — Add level of log before the log message
- 🔊 — Add a warning message in the logs if there is no tasks in database. (fix #41)
— 🔊 — Add a warning messages in the logs if there is no tasks in database. (fix #41)
- ✨ — Add command to generate example configuration (fix #38)
- 📝 — Improve documentation
- ✨ — Add command to warn if its been long since last viewing an agent (fix #49)

View file

@ -12,17 +12,15 @@
</a>
</li>
</ul>
{# djlint:off H021 #}
<ul id="status-selector" style="display: none;">{# djlint:on #}
<ul>
<li>
<label for="select-status">Show domains with status:</label>
<select id="select-status">
<option value="not-ok" selected>Not OK</option>
<option value="all">All</option>
<option value="ok">✅ OK</option>
<option value="warning">⚠️ Warning</option>
<option value="critical">❌ Critical</option>
<option value="unknown">❔ Unknown</option>
<option value="all">All</option>
</select>
</li>
</ul>
@ -38,7 +36,7 @@
<tbody id="domains-body">
{% for (domain, status) in domains %}
<tr data-status="{{ status }}">
<tr data-status={{ status }}>
<td>
<a href="{{ url_for('get_domain_tasks_view', domain=domain) }}">
{{ domain }}
@ -67,14 +65,6 @@
document.querySelectorAll('[data-status]').forEach((item) => {
item.style.display = null;
})
} else if (e.currentTarget.value === 'not-ok') {
document.querySelectorAll('[data-status]').forEach((item) => {
if (item.dataset.status !== 'ok') {
item.style.display = null;
} else {
item.style.display = 'none';
}
})
} else {
document.querySelectorAll('[data-status]').forEach((item) => {
if (item.dataset.status === e.currentTarget.value) {
@ -85,13 +75,5 @@
})
}
});
document.querySelectorAll('[data-status]').forEach((item) => {
if (item.dataset.status !== 'ok') {
item.style.display = null;
} else {
item.style.display = 'none';
}
})
document.getElementById('status-selector').style.display = null;
</script>
{% endblock content %}