aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/templates/settings.html
diff options
context:
space:
mode:
Diffstat (limited to 'youtube/templates/settings.html')
-rw-r--r--youtube/templates/settings.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube/templates/settings.html b/youtube/templates/settings.html
index 7a7ce9e..cb2b3cd 100644
--- a/youtube/templates/settings.html
+++ b/youtube/templates/settings.html
@@ -13,9 +13,9 @@
{% if not setting_info.get('hidden', false) %}
<li class="setting-item">
{% if 'label' is in(setting_info) %}
- <label for="{{ 'setting_' + setting_name }}">{{ setting_info['label'] }}</label>
+ <label for="{{ 'setting_' + setting_name }}" {% if 'comment' is in(setting_info) %}title="{{ setting_info['comment'] }}" {% endif %}>{{ setting_info['label'] }}</label>
{% else %}
- <label for="{{ 'setting_' + setting_name }}">{{ setting_name.replace('_', ' ')|capitalize }}</label>
+ <label for="{{ 'setting_' + setting_name }}" {% if 'comment' is in(setting_info) %}title="{{ setting_info['comment'] }}" {% endif %}>{{ setting_name.replace('_', ' ')|capitalize }}</label>
{% endif %}
{% if setting_info['type'].__name__ == 'bool' %}