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