mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 07:09:21 +01:00
5016bc5d5c
We have to define this one in helpers.css because tailwind only generates a single class but certain things rely on this being double-class. Command ran: ```sh perl -p -i -e 's#gt-hidden#tw-hidden#g' web_src/js/**/* templates/**/* models/**/* web_src/css/**/* --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> (cherry picked from commit ec3d467f15a683b305ac165c3eba6683628dcb25) Conflicts: templates/install.tmpl templates/repo/diff/conversation.tmpl templates/repo/issue/view_content/conversation.tmpl templates/repo/issue/view_content/sidebar.tmpl templates/repo/issue/view_title.tmpl resolved by prefering Forgejo version and applying the commands to all files
26 lines
1.3 KiB
Go HTML Template
26 lines
1.3 KiB
Go HTML Template
{{if not .DisableNewPullMirrors}}
|
|
<div class="inline field">
|
|
<label>{{ctx.Locale.Tr "repo.migrate_options"}}</label>
|
|
<div class="ui checkbox">
|
|
<input id="mirror" name="mirror" type="checkbox" {{if .mirror}} checked{{end}}>
|
|
<label>{{ctx.Locale.Tr "repo.migrate_options_mirror_helper"}}</label>
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
{{if .LFSActive}}
|
|
<div class="inline field">
|
|
<label></label>
|
|
<div class="ui checkbox">
|
|
<input id="lfs" name="lfs" type="checkbox" {{if .lfs}} checked{{end}}>
|
|
<label>{{ctx.Locale.Tr "repo.migrate_options_lfs"}}</label>
|
|
</div>
|
|
<span id="lfs_settings" class="tw-hidden">(<a id="lfs_settings_show" href="#">{{ctx.Locale.Tr "repo.settings.advanced_settings"}}</a>)</span>
|
|
</div>
|
|
<div id="lfs_endpoint" class="tw-hidden">
|
|
<span class="help">{{ctx.Locale.Tr "repo.migrate_options_lfs_endpoint.description" "https://github.com/git-lfs/git-lfs/blob/main/docs/api/server-discovery.md#server-discovery"}}{{if .ContextUser.CanImportLocal}} {{ctx.Locale.Tr "repo.migrate_options_lfs_endpoint.description.local"}}{{end}}</span>
|
|
<div class="inline field {{if .Err_LFSEndpoint}}error{{end}}">
|
|
<label>{{ctx.Locale.Tr "repo.migrate_options_lfs_endpoint.label"}}</label>
|
|
<input name="lfs_endpoint" value="{{.lfs_endpoint}}" placeholder="{{ctx.Locale.Tr "repo.migrate_options_lfs_endpoint.placeholder"}}">
|
|
</div>
|
|
</div>
|
|
{{end}}
|