2023-06-18 12:31:42 +02:00
|
|
|
<form class="list-header-search ui form ignore-dirty issue-list-search">
|
2023-04-30 05:33:25 +02:00
|
|
|
<div class="ui small search fluid action input">
|
2023-03-27 18:05:51 +02:00
|
|
|
<input type="hidden" name="state" value="{{$.State}}">
|
2023-10-18 02:03:42 +02:00
|
|
|
{{if not .PageIsMilestones}}
|
|
|
|
<input type="hidden" name="type" value="{{$.ViewType}}">
|
|
|
|
<input type="hidden" name="labels" value="{{.SelectLabels}}">
|
|
|
|
<input type="hidden" name="milestone" value="{{$.MilestoneID}}">
|
|
|
|
<input type="hidden" name="project" value="{{$.ProjectID}}">
|
|
|
|
<input type="hidden" name="assignee" value="{{$.AssigneeID}}">
|
|
|
|
<input type="hidden" name="poster" value="{{$.PosterID}}">
|
|
|
|
{{end}}
|
2024-06-17 20:58:24 +02:00
|
|
|
{{if .PageIsPullList}}
|
|
|
|
{{template "shared/search/combo_fuzzy" dict "Value" .Keyword "IsFuzzy" .IsFuzzy "Placeholder" (ctx.Locale.Tr "search.pull_kind") "Tooltip" (ctx.Locale.Tr "explore.go_to")}}
|
2024-07-25 05:33:44 +02:00
|
|
|
{{else if .PageIsMilestones}}
|
|
|
|
{{template "shared/search/combo_fuzzy" dict "Value" .Keyword "IsFuzzy" .IsFuzzy "Placeholder" (ctx.Locale.Tr "search.milestone_kind") "Tooltip" (ctx.Locale.Tr "explore.go_to")}}
|
2024-06-17 20:58:24 +02:00
|
|
|
{{else}}
|
|
|
|
{{template "shared/search/combo_fuzzy" dict "Value" .Keyword "IsFuzzy" .IsFuzzy "Placeholder" (ctx.Locale.Tr "search.issue_kind") "Tooltip" (ctx.Locale.Tr "explore.go_to")}}
|
2023-05-10 17:50:58 +02:00
|
|
|
{{end}}
|
2017-01-25 03:43:02 +01:00
|
|
|
</div>
|
|
|
|
</form>
|