home · contact · privacy
Improve todo accounting script.
[misc] / todo_templates / tagfilters.html
index 3f784ea8b69c789808d2583c20946412c5ae7be4..21333f6d6b98940994ef77876209cf0fbc74ce95 100644 (file)
@@ -1,37 +1,32 @@
-<p style="float: left; margin-right: 1em;">
-<input type="submit" value="filter">
-</p>
-<p>
-mandatory tags:
-{% for and_filter in db.t_filter_and %}
+need:
+{% for and_filter in filter_and %}
 <select name="t_and">
 <option></option>
-{% for tag in db.t_tags | sort %}
+{% for tag in tags | sort %}
 <option value="{{tag|e}}" {% if and_filter == tag %}selected{% endif %}>{{tag|e}}</option>
 {% endfor %}
 </select>
 {% endfor %}
 <select name="t_and">
 <option></option>
-{% for tag in db.t_tags | sort %}
+{% for tag in tags | sort %}
 <option value="{{tag|e}}">{{tag|e}}</option>
 {% endfor %}
 </select>
 <br />
-forbidden tags:
-{% for not_filter in db.t_filter_not %}
+hide:
+{% for not_filter in filter_not %}
 <select name="t_not">
 <option></option>
-{% for tag in db.t_tags | sort %}
+{% for tag in tags | sort %}
 <option value="{{tag|e}}" {% if not_filter == tag %}selected{% endif %}>{{tag|e}}</option>
 {% endfor %}
 </select>
 {% endfor %}
 <select name="t_not">
 <option></option>
-{% for tag in db.t_tags | sort %}
+{% for tag in tags | sort %}
 <option value="{{tag|e}}">{{tag|e}}</option>
 {% endfor %}
 </select>
-</p>