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
  62. 62
  63. 63
  64. 64
  65. 65
  66. 66
  67. 67
  68. 68
  69. 69
  70. 70
  71. 71
  72. 72
  73. 73
  74. 74
  75. 75
  76. 76
  77. 77
  78. 78
  79. 79
  80. 80
  81. 81
  82. 82
  83. 83
  84. 84
  85. 85
  86. 86
  87. 87
  88. 88
  89. 89
  90. 90
  91. 91
  92. 92
  93. 93
  94. 94
  95. 95
  96. 96
  97. 97
  98. 98
  99. 99
  100. 100
{{template "base/head" .}}
<div class="page-content admin user">
	{{template "admin/navbar" .}}
	<div class="ui container">
		{{template "base/alert" .}}
		<h4 class="ui top attached header">
			{{.locale.Tr "admin.packages.package_manage_panel"}} ({{.locale.Tr "admin.total" .Total}}, {{.locale.Tr "admin.packages.total_size" (FileSize .TotalBlobSize)}})
		</h4>
		<div class="ui attached segment">
			<form class="ui form ignore-dirty">
				<div class="ui fluid action input">
					<input name="q" value="{{.Query}}" placeholder="{{.locale.Tr "explore.search"}}..." autofocus>
					<select class="ui dropdown" name="type">
						<option value="">{{.locale.Tr "packages.filter.type"}}</option>
						<option value="all">{{.locale.Tr "packages.filter.type.all"}}</option>
						<option value="composer" {{if eq .PackageType "composer"}}selected="selected"{{end}}>Composer</option>
						<option value="conan" {{if eq .PackageType "conan"}}selected="selected"{{end}}>Conan</option>
						<option value="container" {{if eq .PackageType "container"}}selected="selected"{{end}}>Container</option>
						<option value="generic" {{if eq .PackageType "generic"}}selected="selected"{{end}}>Generic</option>
						<option value="helm" {{if eq .PackageType "helm"}}selected="selected"{{end}}>Helm</option>
						<option value="maven" {{if eq .PackageType "maven"}}selected="selected"{{end}}>Maven</option>
						<option value="npm" {{if eq .PackageType "npm"}}selected="selected"{{end}}>npm</option>
						<option value="nuget" {{if eq .PackageType "nuget"}}selected="selected"{{end}}>NuGet</option>
						<option value="pub" {{if eq .PackageType "pub"}}selected="selected"{{end}}>Pub</option>
						<option value="pypi" {{if eq .PackageType "pypi"}}selected="selected"{{end}}>PyPi</option>
						<option value="rubygems" {{if eq .PackageType "rubygems"}}selected="selected"{{end}}>RubyGems</option>
						<option value="vagrant" {{if eq .PackageType "vagrant"}}selected="selected"{{end}}>Vagrant</option>
					</select>
					<button class="ui primary button">{{.locale.Tr "explore.search"}}</button>
				</div>
			</form>
		</div>
		<div class="ui attached table segment">
			<table class="ui very basic striped table unstackable">
				<thead>
					<tr>
						<th>ID</th>
						<th>{{.locale.Tr "admin.packages.owner"}}</th>
						<th>{{.locale.Tr "admin.packages.type"}}</th>
						<th data-sortt-asc="name_asc" data-sortt-desc="name_desc">
							{{.locale.Tr "admin.packages.name"}}
							{{SortArrow "name_asc" "name_desc" .SortType false}}
						</th>
						<th data-sortt-asc="version_desc" data-sortt-desc="version_asc">
							{{.locale.Tr "admin.packages.version"}}
							{{SortArrow "version_desc" "version_asc" .SortType false}}
						</th>
						<th>{{.locale.Tr "admin.packages.creator"}}</th>
						<th>{{.locale.Tr "admin.packages.repository"}}</th>
						<th>{{.locale.Tr "admin.packages.size"}}</th>
						<th data-sortt-asc="created_asc" data-sortt-desc="created_desc">
							{{.locale.Tr "admin.packages.published"}}
							{{SortArrow "created_asc" "created_desc" .SortType true}}
						</th>
						<th>{{.locale.Tr "admin.notices.op"}}</th>
					</tr>
				</thead>
				<tbody>
					{{range .PackageDescriptors}}
						<tr>
							<td>{{.Version.ID}}</td>
							<td>
								<a href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a>
								{{if .Owner.Visibility.IsPrivate}}
									<span class="text gold">{{svg "octicon-lock"}}</span>
								{{end}}
							</td>
							<td>{{.Package.Type.Name}}</td>
							<td class="text truncate email">{{.Package.Name}}</td>
							<td><a href="{{.FullWebLink}}" class="text truncate email">{{.Version.Version}}</a></td>
							<td><a href="{{.Creator.HomeLink}}">{{.Creator.Name}}</a></td>
							<td>
							{{if .Repository}}
								<a href="{{.Repository.Link}}">{{.Repository.Name}}</a>
							{{end}}
							</td>
							<td>{{FileSize .CalculateBlobSize}}</td>
							<td><span title="{{.Version.CreatedUnix.FormatLong}}"><time data-format="short-date" datetime="{{.Version.CreatedUnix.FormatLong}}">{{.Version.CreatedUnix.FormatShort}}</time></span></td>
							<td><a class="delete-button" href="" data-url="{{$.Link}}/delete?page={{$.Page.Paginater.Current}}&sort={{$.SortType}}" data-id="{{.Version.ID}}" data-name="{{.Package.Name}}" data-data-version="{{.Version.Version}}">{{svg "octicon-trash"}}</a></td>
						</tr>
					{{end}}
				</tbody>
			</table>
		</div>

		{{template "base/paginate" .}}
	</div>
</div>

<div class="ui small basic delete modal">
	<div class="ui icon header">
		{{svg "octicon-trash"}}
		{{.locale.Tr "packages.settings.delete"}}
	</div>
	<div class="content">
		{{.locale.Tr "packages.settings.delete.notice" `<span class="name"></span>` `<span class="dataVersion"></span>` | Safe}}
	</div>
	{{template "base/delete_modal_actions" .}}
</div>
{{template "base/footer" .}}