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,9 +19,9 @@
19 </div> 19 </div>
20 <div class="panel-body"> 20 <div class="panel-body">
21 {% for list, checked in lists %} 21 {% for list, checked in lists %}
22 - <div class="checkbox"> 22 + <div class="checkbox" title="{{ list.description }}">
23 <label> 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 </label> 25 </label>
26 </div> 26 </div>
27 {% endfor %} 27 {% endfor %}