logo

searx

My custom branche(s) on searx, a meta-search engine
commit: 41b8478f87a679b3b7bd4ed44b1fadc79d4c7d4e
parent: 2e55e5f0be363fde1fe5a4eac31383f8fecd2d46
Author: asciimoo <asciimoo@gmail.com>
Date:   Wed,  1 Jan 2014 22:17:36 +0100

[fix] preferences template added

Diffstat:

Asearx/templates/preferences.html18++++++++++++++++++
1 file changed, 18 insertions(+), 0 deletions(-)

diff --git a/searx/templates/preferences.html b/searx/templates/preferences.html @@ -0,0 +1,18 @@ +{% 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> +{% endblock %}