* Add octicon SVG sprite Signed-off-by: jolheiser <john.olheiser@gmail.com> * Static prefix Signed-off-by: jolheiser <john.olheiser@gmail.com> * SVG for all repo icons Signed-off-by: jolheiser <john.olheiser@gmail.com> * make vendor Signed-off-by: jolheiser <john.olheiser@gmail.com> * Swap out octicons Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move octicons to top of less imports Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix JS Signed-off-by: jolheiser <john.olheiser@gmail.com> * Definitely not a search/replace Signed-off-by: jolheiser <john.olheiser@gmail.com> * Missed regex Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move to more generic calls and webpack Signed-off-by: jolheiser <john.olheiser@gmail.com> * make svg -> make webpack Signed-off-by: jolheiser <john.olheiser@gmail.com> * Remove svg-sprite Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Missed a test Signed-off-by: jolheiser <john.olheiser@gmail.com> * Remove svg from makefile Signed-off-by: jolheiser <john.olheiser@gmail.com> * Suggestions Signed-off-by: jolheiser <john.olheiser@gmail.com> * Attempt to fix test Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Revert timetracking test Signed-off-by: jolheiser <john.olheiser@gmail.com> * Swap .octicon for .svg in less Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add aria-hidden Signed-off-by: jolheiser <john.olheiser@gmail.com> * Replace mega-octicon Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix webpack globbing on Windows Signed-off-by: jolheiser <john.olheiser@gmail.com> * Revert Co-Authored-By: silverwind <me@silverwind.io> * Fix octions from upstream Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix Vue and missed JS function Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add JS helper and PWA Signed-off-by: jolheiser <john.olheiser@gmail.com> * Preload SVG Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: techknowlogick <matti@mdranta.net>
		
			
				
	
	
		
			63 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
{{template "base/head" .}}
 | 
						|
<div class="repository settings lfs">
 | 
						|
	{{template "repo/header" .}}
 | 
						|
	{{template "repo/settings/navbar" .}}
 | 
						|
	<div class="ui container">
 | 
						|
		{{template "base/alert" .}}
 | 
						|
		<h4 class="ui top attached header">
 | 
						|
			{{.i18n.Tr "repo.settings.lfs_filelist"}} ({{.i18n.Tr "admin.total" .Total}})
 | 
						|
			<div class="ui right">
 | 
						|
				<a class="ui black tiny show-panel button" href="{{.Link}}/locks"><span class="octicon-tiny">{{svg "octicon-lock" 16}}</span>{{.i18n.Tr "repo.settings.lfs_locks"}}</a>
 | 
						|
				<a class="ui blue tiny show-panel button" href="{{.Link}}/pointers"><span class="octicon-tiny">{{svg "octicon-search" 16}}</span> {{.i18n.Tr "repo.settings.lfs_findpointerfiles"}}</a>
 | 
						|
			</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>
 | 
						|
						<td>{{TimeSince .CreatedUnix.AsTime $.Lang}}</td>
 | 
						|
						<td class="right aligned">
 | 
						|
							<a class="ui blue show-panel button" href="{{$.Link}}/find?oid={{.Oid}}&size={{.Size}}">{{$.i18n.Tr "repo.settings.lfs_findcommits"}}</a>
 | 
						|
							<button class="ui basic show-modal icon button" data-modal="#delete-{{.Oid}}">
 | 
						|
								<span class="btn-octicon btn-octicon-danger poping up"  data-content="{{$.i18n.Tr "repo.editor.delete_this_file"}}" data-position="bottom center" data-variation="tiny inverted">{{svg "octicon-trashcan" 16}}</span>
 | 
						|
							</button>
 | 
						|
						</td>
 | 
						|
					</tr>
 | 
						|
				{{else}}
 | 
						|
					<tr>
 | 
						|
						<td colspan="4">{{.i18n.Tr "repo.settings.lfs_no_lfs_files"}}</td>
 | 
						|
					</tr>
 | 
						|
				{{end}}
 | 
						|
			</tbody>
 | 
						|
		</table>
 | 
						|
		{{template "base/paginate" .}}
 | 
						|
		{{range .LFSFiles}}
 | 
						|
			<div class="ui basic modal" id="delete-{{.Oid}}">
 | 
						|
				<div class="ui icon header">
 | 
						|
					{{$.i18n.Tr "repo.settings.lfs_delete" .Oid}}
 | 
						|
				</div>
 | 
						|
				<div class="content center">
 | 
						|
					<p>
 | 
						|
						{{$.i18n.Tr "repo.settings.lfs_delete_warning"}}
 | 
						|
					</p>
 | 
						|
					<form class="ui form" action="{{$.Link}}/delete/{{.Oid}}" method="post">
 | 
						|
						{{$.CsrfTokenHtml}}
 | 
						|
						<div class="center actions">
 | 
						|
							<div class="ui basic cancel inverted button">{{$.i18n.Tr "settings.cancel"}}</div>
 | 
						|
							<button class="ui basic inverted yellow button">{{$.i18n.Tr "modal.yes"}}</button>
 | 
						|
						</div>
 | 
						|
					</form>
 | 
						|
				</div>
 | 
						|
			</div>
 | 
						|
		{{end}}
 | 
						|
	</div>
 | 
						|
</div>
 | 
						|
{{template "base/footer" .}}
 |