Parcourir la Source

Replaced fire by hearts for like icon

Denis Merigoux il y a 9 ans
Parent
commit
bc3c2042a7

+ 2 - 2
counter/templates/counterTemplate.html

@@ -24,11 +24,11 @@
24 24
                 </span>
25 25
                 {% elif counter.id == myCounter.id or counter.lastReset.who.id == myCounter.id %}
26 26
                 <span class="pull-right badge" {% if counter.likeCount > 0 %} data-toggle="tooltip" data-placement="top" title="{{ counter.likersString }}" {% endif %}>
27
-                    <span class="glyphicon glyphicon-fire"></span>&emsp;{{ counter.likeCount }}
27
+                    <span class="glyphicon glyphicon-heart"></span>&emsp;{{ counter.likeCount }}
28 28
                 </span>
29 29
                 {% else %}
30 30
                 <a class="pull-right badge" onclick="document.forms['like{{counter.id}}'].submit();">
31
-                    <span class="glyphicon glyphicon-fire"></span>&emsp;{{ counter.likeCount }}
31
+                    <span class="glyphicon glyphicon-heart"></span>&emsp;{{ counter.likeCount }}
32 32
                 </a>
33 33
                 {% endif %}
34 34
                 {% endif %}

+ 3 - 3
counter/templates/homeTemplate.html

@@ -13,7 +13,7 @@
13 13
 						</a>
14 14
 						{% if not myCounter.lastReset.noSeum %}
15 15
 							<span class="pull-right badge" {% if myCounter.likeCount %} data-toggle="tooltip" data-placement="top" title="{{ myCounter.likersString }}" {% endif %}>
16
-								<span class="glyphicon glyphicon-fire"></span>&emsp;{{ myCounter.likeCount }}
16
+								<span class="glyphicon glyphicon-heart"></span>&emsp;{{ myCounter.likeCount }}
17 17
 							</span>
18 18
 						{% endif %}
19 19
 						</h2>
@@ -106,11 +106,11 @@
106 106
 							</span>
107 107
 							{% elif counter.id == myCounter.id or counter.lastReset.who.id == myCounter.id %}
108 108
 			                <span class="pull-right badge" {% if counter.likeCount > 0 %} data-toggle="tooltip" data-placement="top" title="{{ counter.likersString }}" {% endif %}>
109
-			                    <span class="glyphicon glyphicon-fire"></span>&emsp;{{ counter.likeCount }}
109
+			                    <span class="glyphicon glyphicon-heart"></span>&emsp;{{ counter.likeCount }}
110 110
 			                </span>
111 111
 							{% else %}
112 112
 							<a class="pull-right badge" onclick="document.forms['like{{counter.id}}'].submit();">
113
-								<span class="glyphicon glyphicon-fire"></span>&emsp;{{ counter.likeCount }}
113
+								<span class="glyphicon glyphicon-heart"></span>&emsp;{{ counter.likeCount }}
114 114
 							</a>
115 115
 							{% endif %}
116 116
 							{% endif %}