Few fixes

- Whitespaces
- Change a few <p> in <span>
- Add RSS to allow browser detection
- A few UIUX changes
- Add a few more allowed translations
This commit is contained in:
Cqoicebordel 2015-01-15 01:48:46 +01:00
parent 08df681b48
commit 389fc3b8b2
11 changed files with 115 additions and 107 deletions

View file

@ -1,10 +1,10 @@
<div id="categories">
<div id="categories_container">
{% for category in categories %}
{% for category in categories %}
<div class="checkbox_container">
<input type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} /><label for="checkbox_{{ category|replace(' ', '_') }}" class="tooltips">{{ _(category) }}</label>
</div>
{% endfor %}
<div class="hidden">{{ _('Click on the magnifier to perform search') }}</div>
{% endfor %}
{% if display_tooltip %}<div class="hidden">{{ _('Click on the magnifier to perform search') }}</div>{% endif %}
</div>
</div>