2023-04-23 04:21:21 -06:00
|
|
|
{{template "repo/settings/layout_head" (dict "ctxData" . "pageClass" "repository settings lfs")}}
|
|
|
|
<div class="repo-setting-content">
|
2019-10-28 12:31:55 -06:00
|
|
|
<h4 class="ui top attached header">
|
2023-09-25 06:42:40 -06:00
|
|
|
{{ctx.Locale.Tr "repo.settings.lfs_filelist"}} ({{ctx.Locale.Tr "admin.total" .Total}})
|
2019-10-28 12:31:55 -06:00
|
|
|
<div class="ui right">
|
2023-09-25 02:56:50 -06:00
|
|
|
<a class="ui tiny button" href="{{.Link}}/locks">{{ctx.Locale.Tr "repo.settings.lfs_locks"}}</a>
|
|
|
|
<a class="ui primary tiny button" href="{{.Link}}/pointers"> {{ctx.Locale.Tr "repo.settings.lfs_findpointerfiles"}}</a>
|
2019-10-28 12:31:55 -06:00
|
|
|
</div>
|
|
|
|
</h4>
|
|
|
|
<table id="lfs-files-table" class="ui attached segment single line table">
|
|
|
|
<tbody>
|
|
|
|
{{range .LFSFiles}}
|
|
|
|
<tr>
|
|
|
|
<td>
|
2024-03-28 02:31:07 -06:00
|
|
|
<a href="{{$.Link}}/show/{{.Oid}}" title="{{.Oid}}" class="ui brown button tw-font-mono">
|
2023-07-25 20:00:52 -06:00
|
|
|
{{ShortSha .Oid}}
|
|
|
|
</a>
|
2019-10-28 12:31:55 -06:00
|
|
|
</td>
|
|
|
|
<td>{{FileSize .Size}}</td>
|
2023-09-25 06:42:40 -06:00
|
|
|
<td>{{TimeSince .CreatedUnix.AsTime ctx.Locale}}</td>
|
2019-10-28 12:31:55 -06:00
|
|
|
<td class="right aligned">
|
2023-09-25 02:56:50 -06:00
|
|
|
<a class="ui primary button" href="{{$.Link}}/find?oid={{.Oid}}&size={{.Size}}">{{ctx.Locale.Tr "repo.settings.lfs_findcommits"}}</a>
|
2023-07-27 07:39:09 -06:00
|
|
|
<button class="ui basic show-modal icon button red" data-modal="#delete-{{.Oid}}">
|
2023-09-25 02:56:50 -06:00
|
|
|
<span class="btn-octicon btn-octicon-danger" data-tooltip-content="{{ctx.Locale.Tr "repo.editor.delete_this_file"}}">{{svg "octicon-trash"}}</span>
|
2019-10-28 12:31:55 -06:00
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{else}}
|
|
|
|
<tr>
|
2023-09-25 02:56:50 -06:00
|
|
|
<td colspan="4">{{ctx.Locale.Tr "repo.settings.lfs_no_lfs_files"}}</td>
|
2019-10-28 12:31:55 -06:00
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{{template "base/paginate" .}}
|
|
|
|
{{range .LFSFiles}}
|
2023-04-24 05:08:59 -06:00
|
|
|
<div class="ui g-modal-confirm modal" id="delete-{{.Oid}}">
|
2023-04-23 03:24:19 -06:00
|
|
|
<div class="header">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.settings.lfs_delete" .Oid}}
|
2019-10-28 12:31:55 -06:00
|
|
|
</div>
|
2023-04-23 03:24:19 -06:00
|
|
|
<div class="content">
|
2019-10-28 12:31:55 -06:00
|
|
|
<p>
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.settings.lfs_delete_warning"}}
|
2019-10-28 12:31:55 -06:00
|
|
|
</p>
|
|
|
|
<form class="ui form" action="{{$.Link}}/delete/{{.Oid}}" method="post">
|
|
|
|
{{$.CsrfTokenHtml}}
|
2023-09-24 14:31:58 -06:00
|
|
|
{{template "base/modal_actions_confirm" (dict "ModalButtonColors" "yellow")}}
|
2019-10-28 12:31:55 -06:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2023-04-23 04:21:21 -06:00
|
|
|
{{template "repo/settings/layout_footer" .}}
|