code.gitea.io/gitea@v1.22.3/templates/repo/settings/lfs_file_find.tmpl (about)

     1  {{template "repo/settings/layout_head" (dict "ctxData" . "pageClass" "repository settings lfs")}}
     2  	<div class="user-main-content twelve wide column content repository file list">
     3  		<div class="tab-size-8 non-diff-file-content">
     4  			<h4 class="ui top attached header">
     5  				<a href="{{.LFSFilesLink}}">{{ctx.Locale.Tr "repo.settings.lfs"}}</a> / <span class="truncate sha">{{.Oid}}</span>
     6  			</h4>
     7  			<table id="lfs-files-find-table" class="ui attached segment single line table">
     8  				<tbody>
     9  					{{range .Results}}
    10  						<tr>
    11  							<td>
    12  								{{svg "octicon-file"}}
    13  								<a href="{{$.RepoLink}}/src/commit/{{.SHA}}/{{PathEscapeSegments .Name}}" title="{{.Name}}">{{.Name}}</a>
    14  							</td>
    15  							<td class="message">
    16  								<span class="truncate">
    17  									<a href="{{$.RepoLink}}/commit/{{.SHA}}" title="{{.Summary}}">
    18  										{{.Summary | RenderEmoji $.Context}}
    19  									</a>
    20  								</span>
    21  							</td>
    22  							<td>
    23  								<span class="text grey">{{svg "octicon-git-branch"}}{{.BranchName}}</span>
    24  							</td>
    25  							<td>
    26  								{{if .ParentHashes}}
    27  									{{ctx.Locale.Tr "repo.diff.parent"}}
    28  									{{range .ParentHashes}}
    29  										<a class="ui primary sha label" href="{{$.RepoLink}}/commit/{{.String}}">{{ShortSha .String}}</a>
    30  									{{end}}
    31  								{{end}}
    32  								{{ctx.Locale.Tr "repo.diff.commit"}}
    33  								<a class="ui primary sha label" href="{{$.RepoLink}}/commit/{{.SHA}}">{{ShortSha .SHA}}</a>
    34  							</td>
    35  							<td>{{TimeSince .When ctx.Locale}}</td>
    36  						</tr>
    37  					{{else}}
    38  						<tr>
    39  							<td colspan="5">{{ctx.Locale.Tr "repo.settings.lfs_lfs_file_no_commits"}}</td>
    40  						</tr>
    41  					{{end}}
    42  				</tbody>
    43  			</table>
    44  		</div>
    45  	</div>
    46  {{template "repo/settings/layout_footer" .}}