Browse Source

Add templates to customize text when creating and migrating repositories

These can be used to explain which types of repositories a Gitea instance is
willing to host, or other rules for creating repositories.
tags/v1.19.0-rc0
Brecht Van Lommel 1 year ago
parent
commit
a31fedd2c2

+ 1
- 4
templates/repo/create.tmpl View File

@@ -9,10 +9,7 @@
</h3>
<div class="ui attached segment">
{{template "base/alert" .}}

{{if not $.DisableMigrations}}
<p class="ui center">{{.locale.Tr "repo.new_repo_helper" ((printf "%s%s" AppSubUrl "/repo/migrate")|Escape) | Safe}}</p>
{{end}}
{{template "repo/create_helper" .}}

{{if not .CanCreateRepo}}
<div class="ui negative message">

+ 3
- 0
templates/repo/create_helper.tmpl View File

@@ -0,0 +1,3 @@
{{if not $.DisableMigrations}}
<p class="ui center">{{.locale.Tr "repo.new_repo_helper" ((printf "%s%s" AppSubUrl "/repo/migrate")|Escape) | Safe}}</p>
{{end}}

+ 0
- 0
templates/repo/migrate/helper.tmpl View File


+ 1
- 0
templates/repo/migrate/migrate.tmpl View File

@@ -2,6 +2,7 @@
<div class="page-content repository new migrate">
<div class="ui middle very relaxed page grid">
<div class="column">
{{template "repo/migrate/helper" .}}
<div class="ui three stackable cards">
{{range .Services}}
<a class="ui card df ac" href="{{AppSubUrl}}/repo/migrate?service_type={{.}}&org={{$.Org}}&mirror={{$.Mirror}}">

Loading…
Cancel
Save