Skip to content
Snippets Groups Projects
Commit fb22bb68 authored by Hervé  MENAGER's avatar Hervé MENAGER
Browse files

fix "display all" behaviour in multiselection list menu.

Former-commit-id: 59caf23a04768e8f6d44bf025eda40fc01e22c71
parent 599f93c7
No related branches found
No related tags found
No related merge requests found
...@@ -3,10 +3,10 @@ ...@@ -3,10 +3,10 @@
<legend>{{ label }} <legend>{{ label }}
{% if not all_param_value %} {% if not all_param_value %}
<a href="#" class="float-right text-light" title="Display all {{ label }}s" onclick="modifyUrl('{{ all_param_name }}',true);">[+]</a> <a href="#" class="float-right text-light" title="Display all {{ label }}s" onclick="modifyUrl('{{ all_param_name }}',true);">[+]</a>
<input type="hidden" name="{{ all_param_name }}" value="{{ all_param_value }}" />
{% endif %} {% endif %}
{% if all_param_value %} {% if all_param_value == "true" %}
<a href="#" class="float-right text-light" title="Show only top 5 {{ label }}s" onclick="modifyUrl('{{ all_param_name }}',null);">[-]</a> <a href="#" class="float-right text-light" title="Show only top 5 {{ label }}s" onclick="modifyUrl('{{ all_param_name }}',null);">[-]</a>
<input type="hidden" name="{{ all_param_name }}" value="{{ all_param_value }}" />
{% endif %} {% endif %}
</legend> </legend>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment