diff options
Diffstat (limited to 'templates/explore/search.tmpl')
-rw-r--r-- | templates/explore/search.tmpl | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/templates/explore/search.tmpl b/templates/explore/search.tmpl index 2bb5f319d1..54d995989a 100644 --- a/templates/explore/search.tmpl +++ b/templates/explore/search.tmpl @@ -1,12 +1,13 @@ -<div class="ui secondary filter menu gt-ac gt-mx-0"> +<div class="ui small secondary filter menu gt-ac gt-mx-0"> <form class="ui form ignore-dirty gt-f1"> - <div class="ui fluid action input"> - {{template "shared/searchinput" dict "Value" .Keyword}} - <button class="ui primary button">{{ctx.Locale.Tr "explore.search"}}</button> - </div> + {{if .PageIsExploreUsers}} + {{template "shared/search/combo" dict "Value" .Keyword "Placeholder" (ctx.Locale.Tr "search.user_kind")}} + {{else}} + {{template "shared/search/combo" dict "Value" .Keyword "Placeholder" (ctx.Locale.Tr "search.org_kind")}} + {{end}} </form> <!-- Sort --> - <div class="ui dropdown type jump item gt-mr-0"> + <div class="ui small dropdown type jump item gt-mr-0"> <span class="text"> {{ctx.Locale.Tr "repo.issues.filter_sort"}} </span> |