Browse Source

[fix] preferences template added

asciimoo 11 years ago
parent
commit
41b8478f87
1 changed files with 18 additions and 0 deletions
  1. 18 0
      searx/templates/preferences.html

+ 18 - 0
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 %}