diff options
author | zeripath <art27@cantab.net> | 2022-03-22 19:54:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-22 19:54:24 +0000 |
commit | d2c165811a1bad081b2e99ca580e3bdbb18171f0 (patch) | |
tree | 25b9381bd920f347e4c2cce095741c3b0c8be780 /templates/repo/projects | |
parent | 461068cfa14bce6c1d6e24a6dc84b7ea0ac60080 (diff) | |
download | gitea-d2c165811a1bad081b2e99ca580e3bdbb18171f0.tar.gz gitea-d2c165811a1bad081b2e99ca580e3bdbb18171f0.zip |
Use the new/choose link for New Issue on project page (#19172)
Extend issues/new/choose to pass the project id and change New Issue
link on project page to use new/choose
Fix #19170
Signed-off-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'templates/repo/projects')
-rw-r--r-- | templates/repo/projects/view.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/projects/view.tmpl b/templates/repo/projects/view.tmpl index e96b92fb77..4ca21cc38e 100644 --- a/templates/repo/projects/view.tmpl +++ b/templates/repo/projects/view.tmpl @@ -8,7 +8,7 @@ </div> <div class="column right aligned"> {{if and .CanWriteProjects (not .Repository.IsArchived)}} - <a class="ui green button show-modal item" href="{{$.RepoLink}}/issues/new?project={{$.Project.ID}}">{{.i18n.Tr "repo.issues.new"}}</a> + <a class="ui green button show-modal item" href="{{$.RepoLink}}/issues/new/choose?project={{$.Project.ID}}">{{.i18n.Tr "repo.issues.new"}}</a> <a class="ui green button show-modal item" data-modal="#new-board-item">{{.i18n.Tr "new_project_board"}}</a> {{end}} <div class="ui small modal new-board-modal" id="new-board-item"> |