Commit 75d358619d121bd16d45a4db8302bce6cf77f15c

Authored by Sergio Oliveira
1 parent a743f536

Moving title to div

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 %}
... ...