blob: d47dd4834c324cce07cab826224f7cc6010e62d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{% 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 %}
|