Get rid of "options_"

This commit is contained in:
Yohan Boniface 2013-01-31 23:25:37 +01:00
parent 7bbfdf579e
commit 34fc7f9fd1

View file

@ -2,7 +2,7 @@
<fieldset id="style_options"> <fieldset id="style_options">
<legend id="style_options_toggle">{% trans "Styles options" %}</legend> <legend id="style_options_toggle">{% trans "Styles options" %}</legend>
<label class="more_style_options"></label> <label class="more_style_options"></label>
{% foundation_field form.options_color %} {% foundation_field form.color %}
{% if form.icon_class and form.pictogram %} {% if form.icon_class and form.pictogram %}
<div class="formbox"> <div class="formbox">
{{ form.icon_class }} {{ form.icon_class }}
@ -11,22 +11,22 @@
</div> </div>
<small class="help-text">{% trans "Change marker shape and symbol." %}</small> <small class="help-text">{% trans "Change marker shape and symbol." %}</small>
{% endif %} {% endif %}
{% foundation_field form.options_weight %} {% foundation_field form.weight %}
{% if form.options_stroke %} {% if form.stroke %}
<div class="formbox"> <div class="formbox">
<span>{{ form.options_stroke.label }}</span>{{ form.options_stroke }} <span>{{ form.stroke.label }}</span>{{ form.stroke }}
</div> </div>
<small class="help-text">{{ form.options_stroke.help_text }}</small> <small class="help-text">{{ form.stroke.help_text }}</small>
{% endif %} {% endif %}
{% foundation_field form.options_smoothFactor %} {% foundation_field form.smoothFactor %}
{% foundation_field form.options_opacity %} {% foundation_field form.opacity %}
{% if form.options_fill %} {% if form.fill %}
<div class="formbox"> <div class="formbox">
<span>{{ form.options_fill.label }}</span>{{ form.options_fill }} <span>{{ form.fill.label }}</span>{{ form.fill }}
</div> </div>
<small class="help-text">{{ form.options_fill.help_text }}</small> <small class="help-text">{{ form.fill.help_text }}</small>
{% endif %} {% endif %}
{% foundation_field form.options_fillOpacity %} {% foundation_field form.fillOpacity %}
{% foundation_field form.options_fillColor %} {% foundation_field form.fillColor %}
{% foundation_field form.options_dashArray %} {% foundation_field form.dashArray %}
</fieldset> </fieldset>