euscan-ng/euscanwww/djeuscan/templates/euscan/package.html

106 lines
3.3 KiB
HTML
Raw Normal View History

{% extends "euscan/_datatable.html" %}
{% load sub %}
2012-05-06 20:27:14 +02:00
{% load url from future %}
{% block meta %}
{{ block.super }}
2012-05-06 20:27:14 +02:00
<link rel="alternate" type="application/atom+xml" title="{{ package }} Feed"
href="{% url "package_feed" package.category package.name %}" />
{% endblock %}
{% block menu_feed %}
{{ block.super }}
<li>
<img src="{{ STATIC_URL }}/img/feed.png" alt="feed" />
2012-05-06 20:27:14 +02:00
<a title="{{ package }} Feed" href="{% url "package_feed" package.category package.name %}">
{{ package|truncatechars:15 }}
2012-05-06 20:27:14 +02:00
</a>
</li>
{% endblock %}
{% block title %}
{{ block.super }} - {{ package.category }}/{{ package.name }}
{% endblock %}
{% block content %}
<div class="refresh-alert alert {% if not refresh_pos %}hide{% endif %}">
<p>A refresh request is in progress, please wait...</p>
<p>Queue position: <span id="refresh-pos">{{ refresh_pos }}</span></p>
</div>
<h2>
{{ package.category }}/{{ package.name }}
{% if user.is_authenticated %}
<span class="pull-right">
<form class="refresh-form inline"
method="POST"
action="{% url "refresh_package" package.category package.name %}">
<button class="btn refresh-button {% if refresh_requested %}hide{% endif %}" type="submit">
<img src="{{ STATIC_URL}}/img/refresh-active.png" alt="Refresh" />
</button>
<input type="hidden" name="nojs" value="true" />
</form>
<button class="btn refresh-button-disabled disabled {% if not refresh_requested %}hide{% endif %}">
<img src="{{ STATIC_URL}}/img/refresh-inactive.png" alt="Refresh" />
</button>
<button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_package" package.category package.name %}">
<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_package" package.category package.name %}">
<img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" />
</button>
</span>
{% endif %}
</h2>
{% include "euscan/_package_details.html" %}
<hr/>
{% if user.is_authenticated %}
<a class="pull-right" href="{% url "problem" package.category package.name %}">
<span class="btn bug-button">
<img src="{{ STATIC_URL}}/img/bug.png" alt="Report problems" >
</span>
</a>
{% endif %}
<script type="text/javascript">
$(document).ready(function () {
$(".refresh-form").submit(function(e) {
var url = $(this).attr("action");
e.preventDefault();
e.stopPropagation();
$.post(url, function(data) {
$(".refresh-button").addClass("hide");
$(".refresh-button-disabled").removeClass("hide");
$("#refresh-pos").text(data.position);
$(".refresh-alert").show("slow");
});
return false;
});
$(".favourite-button").click(function() {
$.post($(this).data("url"), function() {
$(".unfavourite-button").removeClass("hide");
$(".favourite-button").addClass("hide");
});
});
$(".unfavourite-button").click(function() {
$.post($(this).data("url"), function() {
$(".favourite-button").removeClass("hide");
$(".unfavourite-button").addClass("hide");
});
});
});
</script>
{% endblock %}