matrix-synapse-diskspace-ja.../frontend/deleting.gotemplate.html

29 lines
849 B
HTML
Raw Permalink Normal View History

2023-01-09 18:21:58 +01:00
<div class="vertical align-center">
2023-01-09 18:11:51 +01:00
<h3>deleting...</h3>
2023-01-09 18:49:12 +01:00
<p>
<em>This page will automatically refresh every 10 seconds while the deletion process is happening...</em>
</p>
2023-01-09 18:59:15 +01:00
2023-01-09 18:49:12 +01:00
<script>
setTimeout(function(){ window.location.reload(); }, 1000 * 10);
</script>
2023-01-09 18:11:51 +01:00
<div>
{{ range $i, $room := .Rooms }}
{{ if $room.Id }}
<div class="horizontal align-center">
<label for="ban_{{ $i }}" >BAN</span>
2023-01-09 18:32:58 +01:00
<input id="ban_{{ $i }}" type="checkbox" disabled {{if $room.Ban }}checked{{ end }}></input>
2023-01-09 18:11:51 +01:00
<span> STATUS: {{ $room.Status }} &nbsp; {{ $room.IdWithName }}</span>
</div>
{{ end }}
{{ end }}
</div>
{{ if gt .StateGroupsStateProgress 0 }}
2023-01-09 18:11:51 +01:00
<p>
Progress of deleting rows from <code>state_groups_state</code>: {{ .StateGroupsStateProgress }}%
</p>
{{ end }}
</div>