mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-17 13:08:16 -06:00
Focus on searchbar #7839
This commit is contained in:
parent
1add5accf2
commit
9536561aa8
@ -33,7 +33,7 @@
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="d-flex my-1 flex-grow-1 justify-content-center w-100">
|
<div class="d-flex my-1 flex-grow-1 justify-content-center w-100">
|
||||||
{% search_options %}
|
{% search_options request %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -45,7 +45,7 @@
|
|||||||
|
|
||||||
{# Search bar #}
|
{# Search bar #}
|
||||||
<div class="col-6 d-flex flex-grow-1 justify-content-center">
|
<div class="col-6 d-flex flex-grow-1 justify-content-center">
|
||||||
{% search_options %}
|
{% search_options request %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{# Proflie/login button #}
|
{# Proflie/login button #}
|
||||||
|
@ -8,6 +8,9 @@ search_form = SearchForm()
|
|||||||
|
|
||||||
|
|
||||||
@register.inclusion_tag("search/searchbar.html")
|
@register.inclusion_tag("search/searchbar.html")
|
||||||
def search_options() -> Dict:
|
def search_options(request) -> Dict:
|
||||||
"""Provide search options to template."""
|
"""Provide search options to template."""
|
||||||
return {"options": search_form.options}
|
return {
|
||||||
|
'options': search_form.options,
|
||||||
|
'request': request,
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user