mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
21 lines
No EOL
639 B
HTML
21 lines
No EOL
639 B
HTML
<p class="text-muted">
|
|
{{- _('This is the list of cookies and their values SearXNG is storing on your computer.') }}
|
|
<br />{{- _('With that list, you can assess SearXNG transparency.') -}}
|
|
<br />{{- '' -}}
|
|
</p>
|
|
{% if cookies %}
|
|
<table class="cookies">
|
|
<tr>{{- '' -}}
|
|
<th>{{ _('Cookie name') }}</th>{{- '' -}}
|
|
<th>{{ _('Value') }}</th>{{- '' -}}
|
|
</tr>
|
|
{%- for cookie in cookies -%}
|
|
<tr>{{- '' -}}
|
|
<td>{{ cookie }}</td>{{- '' -}}
|
|
<td>{{ cookies[cookie] }}</td>{{- '' -}}
|
|
</tr>
|
|
{%- endfor -%}
|
|
</table>
|
|
{%- else -%}
|
|
{% include 'simple/messages/no_cookies.html' %}
|
|
{% endif %} |