| {% htmx_selectbox name="project_id" options=component.project_options show_label=False defer=False %} |
{# bug: need the id because selectbox isn't going away for some reason... #}
{% if component.hypothesis_options %}
{% htmx_selectbox name="hypothesis_id" options=component.hypothesis_options dynamic_options=True show_label=False %}
{% endif %}
|
{% if component.tag_options %}
{% htmx_selectbox name="tags__ids" label="Tags" options=component.tag_options dynamic_options=True multiselect=True show_label=False %}
{% endif %}
|