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