mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-06-25 16:19:19 +02:00
30 lines
1.5 KiB
PHP
30 lines
1.5 KiB
PHP
<dialog id="tmp-cleanup-dialog" class="admin-dialog admin-dialog--sheet" aria-labelledby="tmp-cleanup-title">
|
|
<div class="admin-dialog__header">
|
|
<h3 id="tmp-cleanup-title">Nettoyer les fichiers temporaires</h3>
|
|
<button type="button" class="admin-dialog__close" aria-label="Fermer"
|
|
onclick="document.getElementById('tmp-cleanup-dialog').close()">✕</button>
|
|
</div>
|
|
<div class="admin-dialog__body">
|
|
<div id="tmp-cleanup-result" style="display:none;margin-bottom:var(--space-sm)"></div>
|
|
<div class="n-grid" id="cleanup-grid-parent">
|
|
<!-- ═══════ FilePond / Trash ═══════ -->
|
|
<details id="tmp-cleanup-stats" class="n-section" open>
|
|
<summary>Fichiers temporaires</summary>
|
|
<div hx-get="/admin/actions/cleanup-stats-fragment.php"
|
|
hx-trigger="loadStats"
|
|
hx-swap="innerHTML">
|
|
<p style="margin:0;color:var(--text-secondary)">Chargement…</p>
|
|
</div>
|
|
</details>
|
|
<!-- ═══════ PeerTube ═══════ -->
|
|
<div id="peertube-orphans-wrapper"
|
|
hx-get="/admin/actions/peertube-orphans-fragment.php"
|
|
hx-trigger="loadPeertube"
|
|
hx-swap="outerHTML"
|
|
hx-indicator="#peertube-orphans-wrapper">
|
|
<p style="margin:0;color:var(--text-secondary)">Chargement…</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</dialog>
|