2023-04-23 10:21:21 +00:00
|
|
|
{{template "repo/settings/layout_head" (dict "ctxData" . "pageClass" "repository settings lfs")}}
|
|
|
|
<div class="user-main-content twelve wide column content repository file list">
|
2019-10-28 18:31:55 +00:00
|
|
|
<div class="tab-size-8 non-diff-file-content">
|
|
|
|
<h4 class="ui top attached header">
|
2023-09-25 08:56:50 +00:00
|
|
|
<a href="{{.LFSFilesLink}}">{{ctx.Locale.Tr "repo.settings.lfs"}}</a> / <span class="truncate sha">{{.Oid}}</span>
|
2019-10-28 18:31:55 +00:00
|
|
|
</h4>
|
|
|
|
<table id="lfs-files-find-table" class="ui attached segment single line table">
|
|
|
|
<tbody>
|
|
|
|
{{range .Results}}
|
|
|
|
<tr>
|
|
|
|
<td>
|
2020-09-11 20:19:00 +00:00
|
|
|
{{svg "octicon-file"}}
|
2021-11-16 18:18:25 +00:00
|
|
|
<a href="{{$.RepoLink}}/src/commit/{{.SHA}}/{{PathEscapeSegments .Name}}" title="{{.Name}}">{{.Name}}</a>
|
2019-10-28 18:31:55 +00:00
|
|
|
</td>
|
2020-05-01 17:58:45 +00:00
|
|
|
<td class="message">
|
2019-10-28 18:31:55 +00:00
|
|
|
<span class="truncate">
|
2024-02-24 22:34:51 +00:00
|
|
|
<a href="{{$.RepoLink}}/commit/{{.SHA}}" title="{{.Summary}}">
|
2023-03-05 21:59:05 +00:00
|
|
|
{{.Summary | RenderEmoji $.Context}}
|
2019-10-28 18:31:55 +00:00
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
2020-09-11 20:19:00 +00:00
|
|
|
<span class="text grey">{{svg "octicon-git-branch"}}{{.BranchName}}</span>
|
2019-10-28 18:31:55 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{if .ParentHashes}}
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "repo.diff.parent"}}
|
2019-10-28 18:31:55 +00:00
|
|
|
{{range .ParentHashes}}
|
2022-05-19 22:08:08 +00:00
|
|
|
<a class="ui primary sha label" href="{{$.RepoLink}}/commit/{{.String}}">{{ShortSha .String}}</a>
|
2019-10-28 18:31:55 +00:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "repo.diff.commit"}}
|
2022-05-19 22:08:08 +00:00
|
|
|
<a class="ui primary sha label" href="{{$.RepoLink}}/commit/{{.SHA}}">{{ShortSha .SHA}}</a>
|
2019-10-28 18:31:55 +00:00
|
|
|
</td>
|
2023-09-25 12:42:40 +00:00
|
|
|
<td>{{TimeSince .When ctx.Locale}}</td>
|
2019-10-28 18:31:55 +00:00
|
|
|
</tr>
|
|
|
|
{{else}}
|
|
|
|
<tr>
|
2023-09-25 08:56:50 +00:00
|
|
|
<td colspan="5">{{ctx.Locale.Tr "repo.settings.lfs_lfs_file_no_commits"}}</td>
|
2019-10-28 18:31:55 +00:00
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-04-23 10:21:21 +00:00
|
|
|
{{template "repo/settings/layout_footer" .}}
|