diff options
Diffstat (limited to 'chimere_rss/templates')
| -rw-r--r-- | chimere_rss/templates/rss.html | 73 | ||||
| -rw-r--r-- | chimere_rss/templates/rss_descr.html | 8 | ||||
| -rw-r--r-- | chimere_rss/templates/rss_title.html | 2 |
3 files changed, 0 insertions, 83 deletions
diff --git a/chimere_rss/templates/rss.html b/chimere_rss/templates/rss.html deleted file mode 100644 index 0c895ed..0000000 --- a/chimere_rss/templates/rss.html +++ /dev/null @@ -1,73 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} - -{% block sidebar %} -{% endblock %} - -{% block content %} -<div id='content'> -<fieldset class='edit'> -<legend>{% trans "Subscribe to RSS feed" %}</legend> - -<p><font color='red'> {{ error_message }} </font></p> - -<form method='post' id='rss_form' name='rss_form' action=''> -{%if not category_rss_feed %} -<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="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> - </select> -</div> -{% endif %} - -{%ifequal category_rss_feed "category" %} -<h3>{% trans "New points of interest by category" %}</h3> -<div class="fieldWrapper"> - <label for="id_subcategory">{% trans "Choose a category" %}</label> - <select name='subcategory' id='subcategory' onchange='document.forms["rss_form"].submit();'> - {% for cat_subcat in sub_categories %} - <option value ="cat_{{cat_subcat.0.id}}"> ---- {{cat_subcat.0.name}} ---- - {% for sub_category in cat_subcat.1 %} - <option value='{{sub_category.id}}'{% ifequal sub_category.id current_category %} selected='selected'{% endifequal %}> - {% trans sub_category.name %} - </option>{% endfor %} - </option>{% endfor %} - </select> -</div> -{% endifequal %} - -{%ifequal category_rss_feed "area" %} -<h3>{% trans "New points of interest by area" %}</h3> -{% if area_id %} -<div class="fieldWrapper"> - <label for="id_area">{% trans "Choose a pre-defined areas" %}</label> - <select name='id_area' id='id_area' onchange='document.forms["rss_form"].submit();'> - <option value="" selected="selected"> ---- </option> - {% for areaID in area_id %} - <option value ={{areaID.id}}>{{areaID.name}}</option> - {% endfor %} - </select> -</div> - -</form> - -<form method='post' action=''> -{% endif %} -<div class='fieldWrapper'> -<label>{% trans "Or select the area by zooming and panning this map" %}</label> -<div class="map"> - {{form.area}} -</div> -</div> -<p><input type="submit" value="{% trans "Validate" %}" /></p> -{% endifequal %} - -</form> - -</fieldset> -</div> -{% endblock %} diff --git a/chimere_rss/templates/rss_descr.html b/chimere_rss/templates/rss_descr.html deleted file mode 100644 index 4f75ac6..0000000 --- a/chimere_rss/templates/rss_descr.html +++ /dev/null @@ -1,8 +0,0 @@ -{% load i18n %} -{% load sanitize %} -<div id='detail_content'> -{% if obj.picture %}<img src='{{obj.picture.url}}' alt="{{obj.name}}"/>{%endif%} -<div>{% for property in obj.getProperties %} -<p id='{{property.propertymodel.getNamedId}}'>{{ property.value|sanitize:"p b i br hr strong em span:style a:href:target ul li ol h1 h2 h3 h4"|safe }}</p> -{% endfor %}</div> -</div> diff --git a/chimere_rss/templates/rss_title.html b/chimere_rss/templates/rss_title.html deleted file mode 100644 index 5b379e7..0000000 --- a/chimere_rss/templates/rss_title.html +++ /dev/null @@ -1,2 +0,0 @@ -{% load i18n %} -{{ obj.name }} |
