mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
fix: only show and clear known cookies. closes #3763
This commit is contained in:
parent
c1bb0bebd4
commit
30ea333246
2 changed files with 8 additions and 5 deletions
|
|
@ -10,10 +10,12 @@
|
|||
<th>{{ _('Value') }}</th>{{- '' -}}
|
||||
</tr>
|
||||
{%- for cookie in cookies -%}
|
||||
<tr>{{- '' -}}
|
||||
<td>{{ cookie }}</td>{{- '' -}}
|
||||
<td>{{ cookies[cookie] }}</td>{{- '' -}}
|
||||
</tr>
|
||||
{% if cookie in preferences.key_value_settings %}
|
||||
<tr>{{- '' -}}
|
||||
<td>{{ cookie }}</td>{{- '' -}}
|
||||
<td>{{ cookies[cookie] }}</td>{{- '' -}}
|
||||
</tr>
|
||||
{% endif %}
|
||||
{%- endfor -%}
|
||||
</table>
|
||||
{%- else -%}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue