* Style and template tweaks - Get red and green buttons on arc green closer to base theme - EasyMDE adjustments, toolbar and focus border - Fix header on 404 repo page - Tweaks to frontpage search, add 'Create Repo' button - Fix misaligned box headers - Fix pagination on arc-green - Fix background and footer on explore and repo search * better fix for header button alignment * add label hover for reactions
		
			
				
	
	
		
			63 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
{{template "base/head" .}}
 | 
						|
<div class="page-content 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 tiny show-panel button" href="{{.Link}}/locks"><span class="octicon-tiny">{{svg "octicon-lock"}}</span>{{.i18n.Tr "repo.settings.lfs_locks"}}</a>
 | 
						|
				<a class="ui primary tiny show-panel button" href="{{.Link}}/pointers"><span class="octicon-tiny">{{svg "octicon-search"}}</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 primary 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"}}</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" .}}
 |