diff options
author | volpino <fox91@anche.no> | 2012-07-20 17:10:12 +0200 |
---|---|---|
committer | volpino <fox91@anche.no> | 2012-07-20 17:10:12 +0200 |
commit | 10cb48229482701fc90fbd857c45bc66008e3916 (patch) | |
tree | a2eadcbb49f2b97b54f8a8063fb8c49b4d6ca228 /euscanwww/djeuscan/templates/euscan/category.html | |
parent | euscanwww: color code fix for json hilighting (diff) | |
download | euscan-10cb48229482701fc90fbd857c45bc66008e3916.tar.gz euscan-10cb48229482701fc90fbd857c45bc66008e3916.tar.bz2 euscan-10cb48229482701fc90fbd857c45bc66008e3916.zip |
euscanwww: Icons for watching and refreshing, a user can refresh only once
Signed-off-by: volpino <fox91@anche.no>
Diffstat (limited to 'euscanwww/djeuscan/templates/euscan/category.html')
-rw-r--r-- | euscanwww/djeuscan/templates/euscan/category.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/euscanwww/djeuscan/templates/euscan/category.html b/euscanwww/djeuscan/templates/euscan/category.html index f4f123c..8474914 100644 --- a/euscanwww/djeuscan/templates/euscan/category.html +++ b/euscanwww/djeuscan/templates/euscan/category.html @@ -21,10 +21,10 @@ {% if user.is_authenticated %} <button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_category" category %}"> - Watch + <img src="{{ STATIC_URL}}/img/watch-icon.png" alt="Watch" > </button> <button class="btn unfavourite-button {% if not favourited %}hide{% endif %}" data-url="{% url "unfavourite_category" category %}"> - Unwatch + <img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" > </button> {% endif %} </h2> |