euscanwww: added alert on refresh request, added missing pull-right
Signed-off-by: volpino <fox91@anche.no>
This commit is contained in:
parent
10cb482294
commit
0d4e8283ae
@ -20,12 +20,14 @@
|
|||||||
Category: {{ category }}
|
Category: {{ category }}
|
||||||
|
|
||||||
{% if user.is_authenticated %}
|
{% if user.is_authenticated %}
|
||||||
<button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_category" category %}">
|
<span class="pull-right">
|
||||||
<img src="{{ STATIC_URL}}/img/watch-icon.png" alt="Watch" >
|
<button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_category" category %}">
|
||||||
</button>
|
<img src="{{ STATIC_URL}}/img/watch-icon.png" alt="Watch" >
|
||||||
<button class="btn unfavourite-button {% if not favourited %}hide{% endif %}" data-url="{% url "unfavourite_category" category %}">
|
</button>
|
||||||
<img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" >
|
<button class="btn unfavourite-button {% if not favourited %}hide{% endif %}" data-url="{% url "unfavourite_category" category %}">
|
||||||
</button>
|
<img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" >
|
||||||
|
</button>
|
||||||
|
</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
|
@ -19,12 +19,14 @@
|
|||||||
<h2>
|
<h2>
|
||||||
Herd: {{ herd.herd }}
|
Herd: {{ herd.herd }}
|
||||||
{% if user.is_authenticated %}
|
{% if user.is_authenticated %}
|
||||||
<button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_herd" herd.herd %}">
|
<span class="pull-right">
|
||||||
<img src="{{ STATIC_URL}}/img/watch-icon.png" alt="Watch" >
|
<button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_herd" herd.herd %}">
|
||||||
</button>
|
<img src="{{ STATIC_URL}}/img/watch-icon.png" alt="Watch" >
|
||||||
<button class="btn unfavourite-button {% if not favourited %}hide{% endif %}" data-url="{% url "unfavourite_herd" herd.herd %}">
|
</button>
|
||||||
<img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" >
|
<button class="btn unfavourite-button {% if not favourited %}hide{% endif %}" data-url="{% url "unfavourite_herd" herd.herd %}">
|
||||||
</button>
|
<img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" >
|
||||||
|
</button>
|
||||||
|
</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
</h2>
|
</h2>
|
||||||
|
@ -21,14 +21,17 @@
|
|||||||
<h2>
|
<h2>
|
||||||
Maintainer: {{ maintainer.name }} <{{ maintainer.email }}>
|
Maintainer: {{ maintainer.name }} <{{ maintainer.email }}>
|
||||||
{% if user.is_authenticated %}
|
{% if user.is_authenticated %}
|
||||||
<button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_maintainer" maintainer.id %}">
|
<span class="pull-right">
|
||||||
<img src="{{ STATIC_URL}}/img/watch-icon.png" alt="Watch" >
|
<button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_maintainer" maintainer.id %}">
|
||||||
</button>
|
<img src="{{ STATIC_URL}}/img/watch-icon.png" alt="Watch" >
|
||||||
<button class="btn unfavourite-button {% if not favourited %}hide{% endif %}" data-url="{% url "unfavourite_maintainer" maintainer.id %}">
|
</button>
|
||||||
<img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" >
|
<button class="btn unfavourite-button {% if not favourited %}hide{% endif %}" data-url="{% url "unfavourite_maintainer" maintainer.id %}">
|
||||||
</button>
|
<img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" >
|
||||||
|
</button>
|
||||||
|
</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
{% packages packages %}
|
{% packages packages %}
|
||||||
|
|
||||||
<h3>Statistics</h2>
|
<h3>Statistics</h2>
|
||||||
|
@ -11,12 +11,14 @@
|
|||||||
<h2>
|
<h2>
|
||||||
Overlay: {{ overlay }}
|
Overlay: {{ overlay }}
|
||||||
{% if user.is_authenticated %}
|
{% if user.is_authenticated %}
|
||||||
<button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_overlay" overlay %}">
|
<span class="pull-right">
|
||||||
<img src="{{ STATIC_URL}}/img/watch-icon.png" alt="Watch" >
|
<button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_overlay" overlay %}">
|
||||||
</button>
|
<img src="{{ STATIC_URL}}/img/watch-icon.png" alt="Watch" >
|
||||||
<button class="btn unfavourite-button {% if not favourited %}hide{% endif %}" data-url="{% url "unfavourite_overlay" overlay %}">
|
</button>
|
||||||
<img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" >
|
<button class="btn unfavourite-button {% if not favourited %}hide{% endif %}" data-url="{% url "unfavourite_overlay" overlay %}">
|
||||||
</button>
|
<img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" >
|
||||||
|
</button>
|
||||||
|
</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
</h2>
|
</h2>
|
||||||
|
@ -32,6 +32,10 @@
|
|||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
<div class="refresh-alert alert {% if not refreshed %}hide{% endif %}">
|
||||||
|
A refresh request is in progress, please wait...
|
||||||
|
</div>
|
||||||
|
|
||||||
<h2>
|
<h2>
|
||||||
{{ package.category }}/{{ package.name }}
|
{{ package.category }}/{{ package.name }}
|
||||||
|
|
||||||
@ -214,6 +218,7 @@
|
|||||||
function() {
|
function() {
|
||||||
$(".refresh-button").addClass("hide");
|
$(".refresh-button").addClass("hide");
|
||||||
$(".refresh-button-disabled").removeClass("hide");
|
$(".refresh-button-disabled").removeClass("hide");
|
||||||
|
$(".refresh-alert").show("slow");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user