Commit 75d358619d121bd16d45a4db8302bce6cf77f15c
1 parent
a743f536
Exists in
master
and in
39 other branches
Moving title to div
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/accounts/templates/accounts/manage_subscriptions.html
... | ... | @@ -19,9 +19,9 @@ |
19 | 19 | </div> |
20 | 20 | <div class="panel-body"> |
21 | 21 | {% for list, checked in lists %} |
22 | - <div class="checkbox"> | |
22 | + <div class="checkbox" title="{{ list.description }}"> | |
23 | 23 | <label> |
24 | - <input name="{{ email }}" value="{{ list.listname }}" type="checkbox" {% if checked %}checked{% endif%} title="{{ list.description }}">{{ list.listname }}</input> | |
24 | + <input name="{{ email }}" value="{{ list.listname }}" type="checkbox" {% if checked %}checked{% endif%}>{{ list.listname }}</input> | |
25 | 25 | </label> |
26 | 26 | </div> |
27 | 27 | {% endfor %} | ... | ... |