mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:47:40 -04:00
5a5ab8ef5a
Since 2015/2016, there is a global pollution: ".ui.left" / ".ui.right". Fomantic UI doesn't work this way, it just conflicts with many Fomantic definitions. This PR starts the cleaning work of such techinical debts. And, the "label list" page has been quite messy for long time, for example, why "li" appears in "div" ...... And fix #24296 <details> ![image](https://user-images.githubusercontent.com/2114189/235051281-54c5374c-b5fd-4b5f-9aa2-02d4bb2d9112.png) ![image](https://user-images.githubusercontent.com/2114189/235055703-2ba042e0-4db7-4e63-8646-02f390d496b5.png) ![image](https://user-images.githubusercontent.com/2114189/235056310-4f6ffdc2-5758-4927-8fb8-314d9fb72a6b.png) ![image](https://user-images.githubusercontent.com/2114189/235058400-dab1c9ec-3325-4671-8345-aee6b0b68042.png) ![image](https://user-images.githubusercontent.com/2114189/235058424-85509532-b9bc-43ad-b00f-a87184c60f22.png) </details>
146 lines
8.0 KiB
Handlebars
146 lines
8.0 KiB
Handlebars
{{template "admin/layout_head" (dict "ctxData" . "pageClass" "admin dashboard")}}
|
|
<div class="admin-setting-content">
|
|
{{if .NeedUpdate}}
|
|
<div class="ui negative message flash-error">
|
|
<p>{{(.locale.Tr "admin.dashboard.new_version_hint" .RemoteVersion AppVer) | Str2html}}</p>
|
|
</div>
|
|
{{end}}
|
|
<h4 class="ui top attached header">
|
|
{{.locale.Tr "admin.dashboard.statistic"}}
|
|
</h4>
|
|
<div class="ui attached segment">
|
|
<p>
|
|
{{.locale.Tr "admin.dashboard.statistic_info" .Stats.Counter.User .Stats.Counter.Org .Stats.Counter.PublicKey .Stats.Counter.Repo .Stats.Counter.Watch .Stats.Counter.Star .Stats.Counter.Action .Stats.Counter.Access .Stats.Counter.Issue .Stats.Counter.Comment .Stats.Counter.Oauth .Stats.Counter.Follow .Stats.Counter.Mirror .Stats.Counter.Release .Stats.Counter.AuthSource .Stats.Counter.Webhook .Stats.Counter.Milestone .Stats.Counter.Label .Stats.Counter.HookTask .Stats.Counter.Team .Stats.Counter.UpdateTask .Stats.Counter.Attachment | Str2html}}
|
|
</p>
|
|
</div>
|
|
<h4 class="ui top attached header">
|
|
{{.locale.Tr "admin.dashboard.operations"}}
|
|
</h4>
|
|
<div class="ui attached table segment">
|
|
<form method="post" action="{{AppSubUrl}}/admin">
|
|
{{.CsrfTokenHtml}}
|
|
<table class="ui very basic table gt-px-4">
|
|
<tbody>
|
|
<tr>
|
|
<td>{{.locale.Tr "admin.dashboard.delete_inactive_accounts"}}</td>
|
|
<td class="text right"><button type="submit" class="ui green button" name="op" value="delete_inactive_accounts">{{svg "octicon-play"}} {{.locale.Tr "admin.dashboard.operation_run"}}</button></td>
|
|
</tr>
|
|
<tr>
|
|
<td>{{.locale.Tr "admin.dashboard.delete_repo_archives"}}</td>
|
|
<td class="text right"><button type="submit" class="ui green button" name="op" value="delete_repo_archives">{{svg "octicon-play"}} {{.locale.Tr "admin.dashboard.operation_run"}}</button></td>
|
|
</tr>
|
|
<tr>
|
|
<td>{{.locale.Tr "admin.dashboard.delete_missing_repos"}}</td>
|
|
<td class="text right"><button type="submit" class="ui green button" name="op" value="delete_missing_repos">{{svg "octicon-play"}} {{.locale.Tr "admin.dashboard.operation_run"}}</button></td>
|
|
</tr>
|
|
<tr>
|
|
<td>{{.locale.Tr "admin.dashboard.git_gc_repos"}}</td>
|
|
<td class="text right"><button type="submit" class="ui green button" name="op" value="git_gc_repos">{{svg "octicon-play"}} {{.locale.Tr "admin.dashboard.operation_run"}}</button></td>
|
|
</tr>
|
|
{{if and (not .SSH.Disabled) (not .SSH.StartBuiltinServer)}}
|
|
<tr>
|
|
<td>{{.locale.Tr "admin.dashboard.resync_all_sshkeys"}}<br>
|
|
{{.locale.Tr "admin.dashboard.resync_all_sshkeys.desc"}}</td>
|
|
<td class="text right"><button type="submit" class="ui green button" name="op" value="resync_all_sshkeys">{{svg "octicon-play"}} {{.locale.Tr "admin.dashboard.operation_run"}}</button></td>
|
|
</tr>
|
|
<tr>
|
|
<td>{{.locale.Tr "admin.dashboard.resync_all_sshprincipals"}}<br>
|
|
{{.locale.Tr "admin.dashboard.resync_all_sshprincipals.desc"}}</td>
|
|
<td class="text right"><button type="submit" class="ui green button" name="op" value="resync_all_sshprincipals">{{svg "octicon-play" 16}} {{.locale.Tr "admin.dashboard.operation_run"}}</button></td>
|
|
</tr>
|
|
{{end}}
|
|
<tr>
|
|
<td>{{.locale.Tr "admin.dashboard.resync_all_hooks"}}</td>
|
|
<td class="text right"><button type="submit" class="ui green button" name="op" value="resync_all_hooks">{{svg "octicon-play"}} {{.locale.Tr "admin.dashboard.operation_run"}}</button></td>
|
|
</tr>
|
|
<tr>
|
|
<td>{{.locale.Tr "admin.dashboard.reinit_missing_repos"}}</td>
|
|
<td class="text right"><button type="submit" class="ui green button" name="op" value="reinit_missing_repos">{{svg "octicon-play"}} {{.locale.Tr "admin.dashboard.operation_run"}}</button></td>
|
|
</tr>
|
|
<tr>
|
|
<td>{{.locale.Tr "admin.dashboard.sync_external_users"}}</td>
|
|
<td class="text right"><button type="submit" class="ui green button" name="op" value="sync_external_users">{{svg "octicon-play"}} {{.locale.Tr "admin.dashboard.operation_run"}}</button></td>
|
|
</tr>
|
|
<tr>
|
|
<td>{{.locale.Tr "admin.dashboard.repo_health_check"}}</td>
|
|
<td class="text right"><button type="submit" class="ui green button" name="op" value="repo_health_check">{{svg "octicon-play"}} {{.locale.Tr "admin.dashboard.operation_run"}}</button></td>
|
|
</tr>
|
|
<tr>
|
|
<td>{{.locale.Tr "admin.dashboard.delete_generated_repository_avatars"}}</td>
|
|
<td class="text right"><button type="submit" class="ui green button" name="op" value="delete_generated_repository_avatars">{{svg "octicon-play"}} {{.locale.Tr "admin.dashboard.operation_run"}}</button></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
|
|
<h4 class="ui top attached header">
|
|
{{.locale.Tr "admin.dashboard.system_status"}}
|
|
</h4>
|
|
<div class="ui attached table segment">
|
|
<dl class="dl-horizontal admin-dl-horizontal">
|
|
<dt>{{.locale.Tr "admin.dashboard.server_uptime"}}</dt>
|
|
<dd><relative-time format="duration" datetime="{{.SysStatus.StartTime}}">{{.SysStatus.StartTime}}</relative-time></dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.current_goroutine"}}</dt>
|
|
<dd>{{.SysStatus.NumGoroutine}}</dd>
|
|
<div class="ui divider"></div>
|
|
<dt>{{.locale.Tr "admin.dashboard.current_memory_usage"}}</dt>
|
|
<dd>{{.SysStatus.MemAllocated}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.total_memory_allocated"}}</dt>
|
|
<dd>{{.SysStatus.MemTotal}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.memory_obtained"}}</dt>
|
|
<dd>{{.SysStatus.MemSys}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.pointer_lookup_times"}}</dt>
|
|
<dd>{{.SysStatus.Lookups}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.memory_allocate_times"}}</dt>
|
|
<dd>{{.SysStatus.MemMallocs}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.memory_free_times"}}</dt>
|
|
<dd>{{.SysStatus.MemFrees}}</dd>
|
|
<div class="ui divider"></div>
|
|
<dt>{{.locale.Tr "admin.dashboard.current_heap_usage"}}</dt>
|
|
<dd>{{.SysStatus.HeapAlloc}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.heap_memory_obtained"}}</dt>
|
|
<dd>{{.SysStatus.HeapSys}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.heap_memory_idle"}}</dt>
|
|
<dd>{{.SysStatus.HeapIdle}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.heap_memory_in_use"}}</dt>
|
|
<dd>{{.SysStatus.HeapInuse}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.heap_memory_released"}}</dt>
|
|
<dd>{{.SysStatus.HeapReleased}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.heap_objects"}}</dt>
|
|
<dd>{{.SysStatus.HeapObjects}}</dd>
|
|
<div class="ui divider"></div>
|
|
<dt>{{.locale.Tr "admin.dashboard.bootstrap_stack_usage"}}</dt>
|
|
<dd>{{.SysStatus.StackInuse}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.stack_memory_obtained"}}</dt>
|
|
<dd>{{.SysStatus.StackSys}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.mspan_structures_usage"}}</dt>
|
|
<dd>{{.SysStatus.MSpanInuse}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.mspan_structures_obtained"}}</dt>
|
|
<dd>{{.SysStatus.MSpanSys}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.mcache_structures_usage"}}</dt>
|
|
<dd>{{.SysStatus.MCacheInuse}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.mcache_structures_obtained"}}</dt>
|
|
<dd>{{.SysStatus.MCacheSys}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.profiling_bucket_hash_table_obtained"}}</dt>
|
|
<dd>{{.SysStatus.BuckHashSys}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.gc_metadata_obtained"}}</dt>
|
|
<dd>{{.SysStatus.GCSys}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.other_system_allocation_obtained"}}</dt>
|
|
<dd>{{.SysStatus.OtherSys}}</dd>
|
|
<div class="ui divider"></div>
|
|
<dt>{{.locale.Tr "admin.dashboard.next_gc_recycle"}}</dt>
|
|
<dd>{{.SysStatus.NextGC}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.last_gc_time"}}</dt>
|
|
<dd>{{.SysStatus.LastGC}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.total_gc_pause"}}</dt>
|
|
<dd>{{.SysStatus.PauseTotalNs}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.last_gc_pause"}}</dt>
|
|
<dd>{{.SysStatus.PauseNs}}</dd>
|
|
<dt>{{.locale.Tr "admin.dashboard.gc_times"}}</dt>
|
|
<dd>{{.SysStatus.NumGC}}</dd>
|
|
</dl>
|
|
</div>
|
|
</div>
|
|
{{template "admin/layout_footer" .}}
|