0aba96f66f
Signed-off-by: Corentin Chary <corentincj@iksaif.net>
18 lines
422 B
HTML
18 lines
422 B
HTML
{% extends "euscan/_datatable.html" %}
|
|
|
|
{% load packages %}
|
|
|
|
{% block title %}
|
|
{{ block.super }} - Herd: {{ herd.herd }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Herd: {{ herd.herd }}</h2>
|
|
{% packages packages %}
|
|
|
|
<h3>Statistics</h2>
|
|
<h4>Current statistics</h4>
|
|
<img src="{% url euscan.views.chart_herd herd.herd 'pie-versions' %}" />
|
|
<img src="{% url euscan.views.chart_herd herd.herd 'pie-packages' %}" />
|
|
{% endblock %}
|