85 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "euscan/_datatable.html" %}
 | 
						|
 | 
						|
{% load djeuscan_helpers %}
 | 
						|
{% load url from future %}
 | 
						|
 | 
						|
{% block title %}
 | 
						|
{{ block.super }} - Category: {{ category }}
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block menu_feed %}
 | 
						|
{{ block.super }}
 | 
						|
<li>
 | 
						|
  <img src="{{ STATIC_URL }}/img/feed.png" alt="feed" />
 | 
						|
  <a title="{{ category }} Feed" href="{% url "category_feed" category %}">
 | 
						|
    {{ category|truncatechars:15 }}
 | 
						|
  </a>
 | 
						|
</li>
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<h2>
 | 
						|
  Category: {{ category }}
 | 
						|
 | 
						|
  {% if user.is_authenticated %}
 | 
						|
    <span class="pull-right">
 | 
						|
      <button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_category" category %}">
 | 
						|
        <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 %}">
 | 
						|
        <img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" >
 | 
						|
      </button>
 | 
						|
    </span>
 | 
						|
  {% endif %}
 | 
						|
</h2>
 | 
						|
 | 
						|
{% packages packages %}
 | 
						|
 | 
						|
<h3>Statistics</h2>
 | 
						|
<h4>Current statistics</h4>
 | 
						|
<p>
 | 
						|
  <img src="{% url "chart_category" category 'pie-versions' %}" />
 | 
						|
  <img src="{% url "chart_category" category 'pie-packages' %}" />
 | 
						|
</p>
 | 
						|
 | 
						|
<h4>All Time</h4>
 | 
						|
<p>
 | 
						|
  <img src="{% url "chart_category" category 'versions-weekly' %}" />
 | 
						|
  <img src="{% url "chart_category" category 'versions-monthly' %}" />
 | 
						|
</p>
 | 
						|
 | 
						|
<p>
 | 
						|
  <img src="{% url "chart_category" category 'packages-weekly' %}" />
 | 
						|
  <img src="{% url "chart_category" category 'packages-monthly' %}" />
 | 
						|
</p>
 | 
						|
 | 
						|
<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 %}
 | 
						|
 | 
						|
{% block menus %}
 | 
						|
{{ block.super }}
 | 
						|
<div class="menu rounded notfirst-menu">
 | 
						|
  <dl>
 | 
						|
    <dt>Versions</dt>
 | 
						|
    <dd><img src="{% url "chart_category" category 'versions-monthly-small' %}" /></dd>
 | 
						|
    <dt>Packages</dt>
 | 
						|
    <dd><img src="{% url "chart_category" category 'packages-monthly-small' %}" /></dd>
 | 
						|
  </dl>
 | 
						|
</div>
 | 
						|
{% endblock %}
 |