diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-07-24 01:56:26 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-07-24 01:56:26 +0200 |
commit | 2ac2539dae68b1fa42ff39d4d451771c988089fd (patch) | |
tree | 3a7ac3cde9fe3a714f8502b5b7dde98f281c07bf | |
parent | fcbe42d85255634d74c5ad72ccf78b981d8e6e7a (diff) | |
download | Chimère-2ac2539dae68b1fa42ff39d4d451771c988089fd.tar.bz2 Chimère-2ac2539dae68b1fa42ff39d4d451771c988089fd.zip |
Template: hover message for check all subcategories
-rw-r--r-- | chimere/templates/chimere/blocks/categories.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chimere/templates/chimere/blocks/categories.html b/chimere/templates/chimere/blocks/categories.html index 2b4de53..629bd3e 100644 --- a/chimere/templates/chimere/blocks/categories.html +++ b/chimere/templates/chimere/blocks/categories.html @@ -4,7 +4,8 @@ <li class='main_category'> <img class="control_image toggle_category" id="maincategory_img_{{category.id}}" alt="control" src="{{ STATIC_URL }}chimere/img/{% if category.selected %}minus.png{% else %}plus.png{% endif %}" /> {% comment %}<input type="checkbox" id='checkall_{{category.id}}'>{% endcomment %} - <span class='category_name'> + <span class='category_name' + title="{% trans 'Click to check/uncheck all subcategories' %}"> {% trans category.name %} <i class="fa fa-check main-category-tick" data-category="{{category.pk}}" |