mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-09 11:21:19 +01:00
5d3f99c7c6
* Prototyping * Start work on creating offsets * Modify tests * Start prototyping with actual MPH * Twiddle around * Twiddle around comments * Convert templates * Fix external languages * Fix latest translation * Fix some test * Tidy up code * Use simple map * go mod tidy * Move back to data structure - Uses less memory by creating for each language a map. * Apply suggestions from code review Co-authored-by: delvh <dev.lh@web.de> * Add some comments * Fix tests * Try to fix tests * Use en-US as defacto fallback * Use correct slices * refactor (#4) * Remove TryTr, add log for missing translation key * Refactor i18n - Separate dev and production locale stores. - Allow for live-reloading in dev mode. Co-authored-by: zeripath <art27@cantab.net> * Fix live-reloading & check for errors * Make linter happy * live-reload with periodic check (#5) * Fix tests Co-authored-by: delvh <dev.lh@web.de> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: zeripath <art27@cantab.net>
63 lines
2.3 KiB
Handlebars
63 lines
2.3 KiB
Handlebars
{{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">{{.i18n.Tr "repo.settings.lfs_locks"}}</a>
|
|
<a class="ui primary tiny show-panel button" href="{{.Link}}/pointers"> {{.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 $.i18n}}</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 tooltip" data-content="{{$.i18n.Tr "repo.editor.delete_this_file"}}" data-position="bottom center">{{svg "octicon-trash"}}</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" .}}
|