Browse Source
Backport #15446
Fixes #15444
Co-authored-by: KN4CK3R <KN4CK3R@users.noreply.github.com>
Co-authored-by: KN4CK3R <KN4CK3R@users.noreply.github.com>
mj-v1.14.3
zeripath
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
3 additions and
3 deletions
-
templates/repo/create.tmpl
-
templates/repo/issue/labels/label_list.tmpl
-
templates/user/auth/activate.tmpl
|
|
@ -10,7 +10,7 @@ |
|
|
|
<div class="ui attached segment"> |
|
|
|
{{template "base/alert" .}} |
|
|
|
|
|
|
|
<p class="ui center">{{.i18n.Tr "repo.new_repo_helper" "/repo/migrate" | Safe}}</p> |
|
|
|
<p class="ui center">{{.i18n.Tr "repo.new_repo_helper" (printf "%s%s" AppSubUrl "/repo/migrate") | Safe}}</p> |
|
|
|
|
|
|
|
{{if not .CanCreateRepo}} |
|
|
|
<div class="ui negative message"> |
|
|
|
|
|
@ -40,7 +40,7 @@ |
|
|
|
</div> |
|
|
|
<div class="three wide column"> |
|
|
|
{{if $.PageIsOrgSettingsLabels}} |
|
|
|
<a class="ui right open-issues" href="/issues?labels={{.ID}}">{{svg "octicon-issue-opened"}} {{$.i18n.Tr "repo.issues.label_open_issues" .NumOpenIssues}}</a> |
|
|
|
<a class="ui right open-issues" href="{{AppSubUrl}}/issues?labels={{.ID}}">{{svg "octicon-issue-opened"}} {{$.i18n.Tr "repo.issues.label_open_issues" .NumOpenIssues}}</a> |
|
|
|
{{else}} |
|
|
|
<a class="ui right open-issues" href="{{$.RepoLink}}/issues?labels={{.ID}}">{{svg "octicon-issue-opened"}} {{$.i18n.Tr "repo.issues.label_open_issues" .NumOpenIssues}}</a> |
|
|
|
{{end}} |
|
|
|
|
|
@ -19,7 +19,7 @@ |
|
|
|
{{end}} |
|
|
|
{{else}} |
|
|
|
{{if .NeedsPassword}} |
|
|
|
<form class="ui form" action="/user/activate" method="post"> |
|
|
|
<form class="ui form" action="{{AppSubUrl}}/user/activate" method="post"> |
|
|
|
<div class="required inline field"> |
|
|
|
<label for="password">{{.i18n.Tr "password"}}</label> |
|
|
|
<input id="password" name="password" type="password" autocomplete="off" required> |
|
|
|