diff options
Diffstat (limited to 'searx/templates/simple/macros.html')
| -rw-r--r-- | searx/templates/simple/macros.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/templates/simple/macros.html b/searx/templates/simple/macros.html index 637966715..7d9b9f4ae 100644 --- a/searx/templates/simple/macros.html +++ b/searx/templates/simple/macros.html @@ -55,8 +55,8 @@ <div class="tabs" role="tablist"> {%- endmacro -%} -{%- macro tab_header(name, id, label) -%} -<input type="radio" name="{{ name }}" id="tab-{{ id }}"/> +{%- macro tab_header(name, id, label, checked) -%} +<input type="radio" name="{{ name }}" id="tab-{{ id }}" {% if checked is sameas true %}checked="checked"{% endif %} /> <label id="tab-label-{{ label }}" for="tab-{{ id }}" role="tab" aria-controls="tab-content-{{ id }}">{{ label }}</label> <section id="tab-content-{{ id }}" role="tabpanel" aria-labelledby="tab-label-{{ label }}" aria-hidden="false"> {%- endmacro -%} |