Thanks!
Code: Select all
<operation>
<search position="before"><![CDATA[
<button type="button" id="button-filter" class="btn btn-default"><i class="fa fa-filter"></i> {{ button_filter }}</button>
]]></search>
<add><![CDATA[</div> <--- This shouldn't be here.
<div class="col-sm-4">
<div class="form-group">
<label class="control-label" for="input-store">{{ entry_store }}</label>
<select name="filter_store" id="input-store" class="form-control">
<option value="*">All</option>
{% for store in stores %}
{% if filter_store and filter_store == store.store_id %}
<option value="{{ store.store_id }}" selected="selected">{{ store.name }}</option>
{% else %}
<option value="{{ store.store_id }}">{{ store.name }}</option>
{% endif %}
{% endfor %}
</select>
</div>
</div>
]]></add>
</operation>