gitea

Development moved to Codeberg

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  19. 19
  20. 20
  21. 21
  22. 22
  23. 23
  24. 24
  25. 25
  26. 26
  27. 27
  28. 28
  29. 29
  30. 30
  31. 31
  32. 32
  33. 33
  34. 34
  35. 35
  36. 36
  37. 37
  38. 38
  39. 39
  40. 40
  41. 41
  42. 42
  43. 43
  44. 44
  45. 45
  46. 46
  47. 47
  48. 48
  49. 49
  50. 50
  51. 51
  52. 52
  53. 53
  54. 54
  55. 55
  56. 56
  57. 57
  58. 58
  59. 59
  60. 60
  61. 61
{{template "base/head" .}}
<div role="main" aria-label="{{.Title}}" class="page-content repository settings lfs">
	{{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}}">{{.locale.Tr "repo.settings.lfs"}}</a> / {{.locale.Tr "repo.settings.lfs_locks"}} ({{.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="{{.locale.Tr "repo.settings.lfs_lock_path"}}" autofocus>
						<button class="ui primary button">{{.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 class="tooltip" title="{{$.locale.Tr "repo.settings.lfs_lock_file_no_exist"}}">{{$lock.Path}}</span>
								{{end}}
								{{if not (index $.Lockables $index)}}
									<span class="tooltip" title="{{$.locale.Tr "repo.settings.lfs_noattribute"}}">{{svg "octicon-alert"}}</span>
								{{end}}
							</td>
							<td>
								<a href="{{$.Owner.HomeLink}}">
									{{avatar $.Owner}}
									{{$.Owner.DisplayName}}
								</a>
							</td>
							<td>{{TimeSince .Created $.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>{{$.locale.Tr "repo.settings.lfs_force_unlock"}}</button>
								</form>
							</td>
						</tr>
					{{else}}
						<tr>
							<td colspan="4">{{.locale.Tr "repo.settings.lfs_locks_no_locks"}}</td>
						</tr>
					{{end}}
				</tbody>
			</table>
			{{template "base/paginate" .}}
		</div>
	</div>
</div>
{{template "base/footer" .}}