diff options
| author | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-10-27 00:49:00 +0200 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-10-27 00:49:00 +0200 |
| commit | 8fa5df0f23737f03e82ba5833764d73a6f2cc56f (patch) | |
| tree | cf0131016e3ba3dde889fcee0561afb44543e967 | |
| parent | d4c428210d244226bbee8928c674b6a0a9f27a34 (diff) | |
| download | Chimère-8fa5df0f23737f03e82ba5833764d73a6f2cc56f.tar.bz2 Chimère-8fa5df0f23737f03e82ba5833764d73a6f2cc56f.zip | |
Feeds: fix firct category selection
| -rw-r--r-- | chimere/templates/chimere/feeds/rss.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chimere/templates/chimere/feeds/rss.html b/chimere/templates/chimere/feeds/rss.html index d36e6bf..43697ae 100644 --- a/chimere/templates/chimere/feeds/rss.html +++ b/chimere/templates/chimere/feeds/rss.html @@ -19,7 +19,7 @@ <div class="fieldWrapper"> <label for="rss_category">{% trans "Type of RSS feed" %}</label> <select name='rss_category' id='rss_category' onchange='document.forms["rss_form"].submit();'> - <option value=""> ---- </option> + <option value=""> -- </option> <option value="global">{% trans "All new points of interest" %}</option> <option value="poi">{% trans "New points of interest by category" %}</option> <option value="area">{% trans "New points of interest by area" %}</option> @@ -32,6 +32,7 @@ <div class="fieldWrapper"> <label for="id_subcategory">{% trans "Choose a category" %}</label> <select name='subcategory' id='subcategory' onchange='document.forms["rss_form"].submit();'> + <option value=""> -- </option> {% for cat_subcat in sub_categories %} <option value ="cat_{{cat_subcat.0.id}}"> ---- {{cat_subcat.0.name}} ---- {% for sub_category in cat_subcat.1 %} |
