code.gitea.io/gitea@v1.22.3/templates/shared/search/combo_fuzzy.tmpl (about)

     1  {{/* Value - value of the search field (for search results page) */}}
     2  {{/* Disabled (optional) - if search field/button has to be disabled */}}
     3  {{/* Placeholder (optional) - placeholder text to be used */}}
     4  {{/* IsFuzzy - state of the fuzzy search toggle */}}
     5  {{/* Tooltip (optional) - a tooltip to be displayed on button hover */}}
     6  <div class="ui small fluid action input">
     7  	{{template "shared/search/input" dict "Value" .Value "Disabled" .Disabled "Placeholder" .Placeholder}}
     8  	{{template "shared/search/fuzzy" dict "Disabled" .Disabled "IsFuzzy" .IsFuzzy}}
     9  	{{template "shared/search/button" dict "Disabled" .Disabled "Tooltip" .Tooltip}}
    10  </div>