mirror of
https://github.com/go-gitea/gitea.git
synced 2024-12-12 05:23:45 +08:00
a928739456
Follow #32460 Now the code could be much clearer than before and easier to maintain. A lot of legacy code is removed. Manually tested. This PR is large enough, that fine tunes could be deferred to the future if there is no bug found or design problem. Screenshots: <details> ![image](https://github.com/user-attachments/assets/35f4ab7b-1bc0-4bad-a73c-a4569328303c) </details>
50 lines
2.0 KiB
Handlebars
50 lines
2.0 KiB
Handlebars
{{$pageMeta := .}}
|
|
{{$data := .ProjectsData}}
|
|
{{$issueProject := NIL}}{{if and $pageMeta.Issue $pageMeta.Issue.Project}}{{$issueProject = $pageMeta.Issue.Project}}{{end}}
|
|
<div class="divider"></div>
|
|
<div class="issue-sidebar-combo" data-selection-mode="single" data-update-algo="all"
|
|
{{if $pageMeta.Issue}}data-update-url="{{$pageMeta.RepoLink}}/issues/projects?issue_ids={{$pageMeta.Issue.ID}}"{{end}}
|
|
>
|
|
<input class="combo-value" name="project_id" type="hidden" value="{{$data.SelectedProjectID}}">
|
|
<div class="ui dropdown {{if not $pageMeta.CanModifyIssueOrPull}}disabled{{end}}">
|
|
<a class="text muted">
|
|
<strong>{{ctx.Locale.Tr "repo.issues.new.projects"}}</strong> {{if $pageMeta.CanModifyIssueOrPull}}{{svg "octicon-gear"}}{{end}}
|
|
</a>
|
|
<div class="menu">
|
|
{{if or $data.OpenProjects $data.ClosedProjects}}
|
|
<div class="ui icon search input">
|
|
<i class="icon">{{svg "octicon-search" 16}}</i>
|
|
<input type="text" placeholder="{{ctx.Locale.Tr "repo.issues.filter_projects"}}">
|
|
</div>
|
|
{{end}}
|
|
<div class="item clear-selection">{{ctx.Locale.Tr "repo.issues.new.clear_projects"}}</div>
|
|
{{if $data.OpenProjects}}
|
|
<div class="divider"></div>
|
|
<div class="header">{{ctx.Locale.Tr "repo.issues.new.open_projects"}}</div>
|
|
{{range $data.OpenProjects}}
|
|
<a class="item muted" data-value="{{.ID}}" href="{{.Link ctx}}">
|
|
{{svg .IconName 18}} {{.Title}}
|
|
</a>
|
|
{{end}}
|
|
{{end}}
|
|
{{if $data.ClosedProjects}}
|
|
<div class="divider"></div>
|
|
<div class="header">{{ctx.Locale.Tr "repo.issues.new.closed_projects"}}</div>
|
|
{{range $data.ClosedProjects}}
|
|
<a class="item muted" data-value="{{.ID}}" href="{{.Link ctx}}">
|
|
{{svg .IconName 18}} {{.Title}}
|
|
</a>
|
|
{{end}}
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
<div class="ui list">
|
|
<span class="item empty-list {{if $issueProject}}tw-hidden{{end}}">{{ctx.Locale.Tr "repo.issues.new.no_projects"}}</span>
|
|
{{if $issueProject}}
|
|
<a class="item muted" href="{{$issueProject.Link ctx}}">
|
|
{{svg $issueProject.IconName 18}} {{$issueProject.Title}}
|
|
</a>
|
|
{{end}}
|
|
</div>
|
|
</div>
|