mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 04:54:09 +00:00
7f1db1df3e
Fix #31784. Before: <img width="1648" alt="image" src="https://github.com/user-attachments/assets/03f32545-4a85-42ed-bafc-2b193a5d8023"> After: <img width="1653" alt="image" src="https://github.com/user-attachments/assets/e5bcaf93-49cb-421f-aac1-5122bc488b02"> (cherry picked from commit 0470646d46f90c20f40fde718be6ef8d8c84ee2c)
57 lines
2.4 KiB
Go HTML Template
57 lines
2.4 KiB
Go HTML Template
{{template "repo/settings/layout_head" (dict "ctxData" . "pageClass" "repository settings lfs")}}
|
|
<div class="user-main-content twelve wide column content repository file list">
|
|
<div class="tab-size-8 non-diff-file-content">
|
|
<h4 class="ui top attached header">
|
|
<a href="{{.LFSFilesLink}}">{{ctx.Locale.Tr "repo.settings.lfs"}}</a> / {{ctx.Locale.Tr "repo.settings.lfs_locks"}} ({{ctx.Locale.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="{{ctx.Locale.Tr "repo.settings.lfs_lock_path"}}" autofocus>
|
|
<button class="ui primary button">{{ctx.Locale.Tr "repo.settings.lfs_lock"}}</button>
|
|
</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}}
|
|
{{svg "octicon-file"}}
|
|
<a href="{{$.RepoLink}}/src/branch/{{PathEscapeSegments $.Repository.DefaultBranch}}/{{PathEscapeSegments $lock.Path}}" title="{{$lock.Path}}">{{$lock.Path}}</a>
|
|
{{else}}
|
|
{{svg "octicon-diff"}}
|
|
<span data-tooltip-content="{{ctx.Locale.Tr "repo.settings.lfs_lock_file_no_exist"}}">{{$lock.Path}}</span>
|
|
{{end}}
|
|
{{if not (index $.Lockables $index)}}
|
|
<span data-tooltip-content="{{ctx.Locale.Tr "repo.settings.lfs_noattribute"}}">{{svg "octicon-alert"}}</span>
|
|
{{end}}
|
|
</td>
|
|
<td>
|
|
<a href="{{$lock.Owner.HomeLink}}">
|
|
{{ctx.AvatarUtils.Avatar $lock.Owner}}
|
|
{{$lock.Owner.DisplayName}}
|
|
</a>
|
|
</td>
|
|
<td>{{TimeSince .Created ctx.Locale}}</td>
|
|
<td class="right aligned">
|
|
<form action="{{$.LFSFilesLink}}/locks/{{$lock.ID}}/unlock" method="post">
|
|
{{$.CsrfTokenHtml}}
|
|
<button class="ui primary button"><span class="btn-octicon">{{svg "octicon-lock"}}</span>{{ctx.Locale.Tr "repo.settings.lfs_force_unlock"}}</button>
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
{{else}}
|
|
<tr>
|
|
<td colspan="4">{{ctx.Locale.Tr "repo.settings.lfs_locks_no_locks"}}</td>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
{{template "base/paginate" .}}
|
|
</div>
|
|
</div>
|
|
{{template "repo/settings/layout_footer" .}}
|