euscanwww: Watch/unwatch packages, categories, maintainers, overlays

Added a button for watch/unwatch and a dashboard with user selected
stuff only

Signed-off-by: volpino <fox91@anche.no>
This commit is contained in:
volpino
2012-07-10 16:15:06 +02:00
parent 02be58024a
commit fab19a6bfc
17 changed files with 507 additions and 59 deletions

View File

@ -1,5 +1,6 @@
{% extends "euscan/_datatable.html" %}
{% load url from future %}
{% load euscan %}
{% block title %}
@ -7,6 +8,35 @@
{% endblock %}
{% block content %}
<h2>Overlay: {{ overlay }}</h2>
<h2>
Overlay: {{ overlay }}
{% if user.is_authenticated %}
<button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_overlay" overlay %}">
Watch
</button>
<button class="btn unfavourite-button {% if not favourited %}hide{% endif %}" data-url="{% url "unfavourite_overlay" overlay %}">
Unwatch
</button>
{% endif %}
</h2>
{% packages packages %}
<script type="text/javascript">
$(".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 %}