mirror of
https://github.com/searxng/searxng.git
synced 2024-11-05 17:09:31 +00:00
19 lines
508 B
HTML
19 lines
508 B
HTML
{% extends "base.html" %}
|
|
{% block head %} {% endblock %}
|
|
{% block content %}
|
|
<div class="row">
|
|
<h2>{{ _('Preferences') }}</h2>
|
|
|
|
|
|
<fieldset>
|
|
<legend>{{ _('Default categories') }}</legend>
|
|
<form method="post" action="/preferences" id="search_form">
|
|
<p>
|
|
{% include 'categories.html' %}
|
|
</p>
|
|
<input type="submit" value="{{ _('save') }}" />
|
|
</form>
|
|
</fieldset>
|
|
<div class="right"><a href="/">{{ _('back') }}</a></div>
|
|
</div>
|
|
{% endblock %}
|