Files
TDI-Dashboard/templates/logs.html
T
2026-05-13 11:06:48 +02:00

32 lines
1.5 KiB
HTML

<section class="page-header">
<div class="page-filter-wrap">
<div class="page-filter-header">
<h2>Log DB</h2>
<button id="btn-toggle-filters" class="btn-toggle-filters" title="Mostra/nascondi filtri">
<svg id="filters-arrow" class="filters-arrow" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 6 15 12 9 18"/></svg>
<span class="filters-btn-text">Filtri</span>
</button>
</div>
<div id="filters-collapsible" class="filters-collapsible">
<div class="filters-collapsible-inner">
<div class="log-filters">
<label class="date-label">Dal <input type="date" id="filter-date-from" /></label>
<label class="date-label">Al&nbsp; <input type="date" id="filter-date-to" /></label>
<button id="filter-date-btn" class="filter-date-btn">Filtra</button>
</div>
<hr class="filter-hr" />
<div class="log-filters">
<input type="search" id="log-search" placeholder="Cerca in questo log&hellip;" />
<label><input type="checkbox" class="type-filter" value="log" checked> Log</label>
<label><input type="checkbox" class="type-filter" value="warning" checked> Warning</label>
<label><input type="checkbox" class="type-filter" value="error" checked> Error</label>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="tw">${tbl_logs}</div>
</section>
${pagination}