2014-01-01 21:17:36 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block head %} {% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
2014-01-21 23:17:49 +00:00
|
|
|
<h2>{{ _('Preferences') }}</h2>
|
2014-01-01 21:17:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
<fieldset>
|
2014-01-21 23:17:49 +00:00
|
|
|
<legend>{{ _('Default categories') }}</legend>
|
2014-01-01 21:17:36 +00:00
|
|
|
<form method="post" action="/preferences" id="search_form">
|
|
|
|
<p>
|
|
|
|
{% include 'categories.html' %}
|
|
|
|
</p>
|
2014-01-21 23:17:49 +00:00
|
|
|
<input type="submit" value="{{ _('save') }}" />
|
2014-01-01 21:17:36 +00:00
|
|
|
</form>
|
|
|
|
</fieldset>
|
2014-01-21 23:17:49 +00:00
|
|
|
<div class="right"><a href="/">{{ _('back') }}</a></div>
|
2014-01-01 21:17:36 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|