2019-12-12 06:18:07 -07:00
|
|
|
{{template "base/head" .}}
|
2020-11-30 21:00:14 -07:00
|
|
|
<div class="page-content repository settings lfs">
|
2019-12-12 06:18:07 -07:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
{{template "repo/settings/navbar" .}}
|
|
|
|
<div class="ui container repository file list">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
<div class="tab-size-8 non-diff-file-content">
|
|
|
|
<h4 class="ui top attached header">
|
|
|
|
<a href="{{.LFSFilesLink}}">{{.i18n.Tr "repo.settings.lfs"}}</a> / {{.i18n.Tr "repo.settings.lfs_locks"}} ({{.i18n.Tr "admin.total" .Total}})
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
<form class="ui form ignore-dirty" method="POST">
|
|
|
|
{{$.CsrfTokenHtml}}
|
|
|
|
<div class="ui fluid action input">
|
|
|
|
<input name="path" value="" placeholder="{{.i18n.Tr "repo.settings.lfs_lock_path"}}" autofocus>
|
2022-05-19 16:08:08 -06:00
|
|
|
<button class="ui primary button">{{.i18n.Tr "repo.settings.lfs_lock"}}</button>
|
2019-12-12 06:18:07 -07:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<table id="lfs-files-locks-table" class="ui attached segment single line table">
|
|
|
|
<tbody>
|
|
|
|
{{range $index, $lock := .LFSLocks}}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
{{if index $.Linkable $index}}
|
2020-09-11 14:19:00 -06:00
|
|
|
{{svg "octicon-file"}}
|
2022-03-01 16:14:27 -07:00
|
|
|
<a href="{{$.RepoLink}}/src/branch/{{PathEscapeSegments $.Repository.DefaultBranch}}/{{PathEscapeSegments $lock.Path}}" title="{{$lock.Path}}">{{$lock.Path}}</a>
|
2019-12-12 06:18:07 -07:00
|
|
|
{{else}}
|
2020-09-11 14:19:00 -06:00
|
|
|
{{svg "octicon-diff"}}
|
2021-11-17 20:26:50 -07:00
|
|
|
<span class="tooltip" title="{{$.i18n.Tr "repo.settings.lfs_lock_file_no_exist"}}">{{$lock.Path}}</span>
|
2019-12-12 06:18:07 -07:00
|
|
|
{{end}}
|
|
|
|
{{if not (index $.Lockables $index)}}
|
2021-11-17 20:26:50 -07:00
|
|
|
<span class="tooltip" title="{{$.i18n.Tr "repo.settings.lfs_noattribute"}}">{{svg "octicon-alert"}}</span>
|
2019-12-12 06:18:07 -07:00
|
|
|
{{end}}
|
|
|
|
</td>
|
|
|
|
<td>
|
2022-03-01 16:14:27 -07:00
|
|
|
<a href="{{$.Owner.HomeLink}}">
|
|
|
|
{{avatar $.Owner}}
|
|
|
|
{{$.Owner.DisplayName}}
|
2019-12-12 06:18:07 -07:00
|
|
|
</a>
|
|
|
|
</td>
|
2022-02-07 20:02:30 -07:00
|
|
|
<td>{{TimeSince .Created $.i18n.Lang}}</td>
|
2019-12-12 06:18:07 -07:00
|
|
|
<td class="right aligned">
|
|
|
|
<form action="{{$.LFSFilesLink}}/locks/{{$lock.ID}}/unlock" method="POST">
|
|
|
|
{{$.CsrfTokenHtml}}
|
2022-05-19 16:08:08 -06:00
|
|
|
<button class="ui primary button"><span class="btn-octicon">{{svg "octicon-lock"}}</span>{{$.i18n.Tr "repo.settings.lfs_force_unlock"}}</button>
|
2019-12-12 06:18:07 -07:00
|
|
|
</form>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{else}}
|
|
|
|
<tr>
|
|
|
|
<td colspan="4">{{.i18n.Tr "repo.settings.lfs_locks_no_locks"}}</td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{{template "base/paginate" .}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|