diff options
author | SagePtr <sageptr@gmail.com> | 2018-10-06 01:41:09 +0200 |
---|---|---|
committer | techknowlogick <hello@techknowlogick.com> | 2018-10-05 19:41:09 -0400 |
commit | 378af8ea889066e12defcd7f291ac2b6ab7e2abb (patch) | |
tree | b9a82ce43f6695a4f97e564e1f070c6d79c99e1f | |
parent | c6daee6da6a095bd68e2f4e418e5abe0f4c5e3c2 (diff) | |
download | gitea-378af8ea889066e12defcd7f291ac2b6ab7e2abb.tar.gz gitea-378af8ea889066e12defcd7f291ac2b6ab7e2abb.zip |
Fix missing AppSubUrl in few more templates (#5021)
-rw-r--r-- | templates/repo/home.tmpl | 2 | ||||
-rw-r--r-- | templates/user/auth/u2f.tmpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/repo/home.tmpl b/templates/repo/home.tmpl index cc2d65e763..7e11035ed2 100644 --- a/templates/repo/home.tmpl +++ b/templates/repo/home.tmpl @@ -34,7 +34,7 @@ <div class="ui fluid multiple search selection dropdown"> <input type="hidden" name="topics" value="{{range $i, $v := .Topics}}{{.Name}}{{if lt (Add $i 1) (len $.Topics)}},{{end}}{{end}}"> {{range .Topics}} - <a class="ui green basic label topic transition visible" data-value="{{.Name}}" style="display: inline-block !important;" href="/explore/repos?q={{.Name}}&topic=1">{{.Name}}<i class="delete icon"></i></a> + <a class="ui green basic label topic transition visible" data-value="{{.Name}}" style="display: inline-block !important;" href="{{AppSubUrl}}/explore/repos?q={{.Name}}&topic=1">{{.Name}}<i class="delete icon"></i></a> {{end}} <div class="text"></div> </div> diff --git a/templates/user/auth/u2f.tmpl b/templates/user/auth/u2f.tmpl index fa5904fc38..1d1be09cbf 100644 --- a/templates/user/auth/u2f.tmpl +++ b/templates/user/auth/u2f.tmpl @@ -13,7 +13,7 @@ </div> <div id="wait-for-key" class="ui attached segment"><div class="ui active indeterminate inline loader"></div> {{.i18n.Tr "u2f_press_button"}} </div> <div class="ui attached segment"> - <a href="/user/two_factor">{{.i18n.Tr "u2f_use_twofa"}}</a> + <a href="{{AppSubUrl}}/user/two_factor">{{.i18n.Tr "u2f_use_twofa"}}</a> </div> </div> </div> |