euscanwww: Fixing all templates to be XHTML compliant
Signed-off-by: volpino <fox91@anche.no>
This commit is contained in:
parent
d66c2dff99
commit
269fc0afa5
@ -43,8 +43,10 @@ class BaseFeed(Feed):
|
|||||||
def item_link(self, vlog):
|
def item_link(self, vlog):
|
||||||
kwargs = {'category': vlog.package.category,
|
kwargs = {'category': vlog.package.category,
|
||||||
'package': vlog.package.name}
|
'package': vlog.package.name}
|
||||||
return "%s#%s" % (reverse('djeuscan.views.package', kwargs=kwargs),
|
return "%s#version-%s-%s:%s-%s" % (
|
||||||
vlog.tag())
|
reverse('djeuscan.views.package', kwargs=kwargs),
|
||||||
|
vlog.version, vlog.revision, vlog.slot, vlog.overlay,
|
||||||
|
)
|
||||||
|
|
||||||
def item_pubdate(self, vlog):
|
def item_pubdate(self, vlog):
|
||||||
return vlog.datetime
|
return vlog.datetime
|
||||||
|
@ -1,11 +1,13 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
|
||||||
{% load url from future %}
|
{% load url from future %}
|
||||||
{% load timedelta %}
|
{% load timedelta %}
|
||||||
|
|
||||||
<?xml version="1.0" encoding="utf8"?>
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
|
|
||||||
<head>
|
<head>
|
||||||
<title>{% block title %}euscan{% endblock %}</title>
|
<title>{% block title %}euscan{% endblock %}</title>
|
||||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||||
{% block meta %}
|
{% block meta %}
|
||||||
<link rel="alternate" type="application/atom+xml" title="Global log" href="{% url "global_feed" %}" />
|
<link rel="alternate" type="application/atom+xml" title="Global log" href="{% url "global_feed" %}" />
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
@ -19,7 +21,7 @@
|
|||||||
<body>
|
<body>
|
||||||
<div id="header">
|
<div id="header">
|
||||||
<a href="http://www.gentoo.org">
|
<a href="http://www.gentoo.org">
|
||||||
<img id="logo" src="{{ STATIC_URL }}img/gentoo_org.png" />
|
<img id="logo" src="{{ STATIC_URL }}img/gentoo_org.png" alt="gentoo" />
|
||||||
</a>
|
</a>
|
||||||
{% block header %}<h1>Ebuild Upstream Scanner (euscan)</h1>{% endblock %}
|
{% block header %}<h1>Ebuild Upstream Scanner (euscan)</h1>{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
|
@ -3,14 +3,16 @@
|
|||||||
|
|
||||||
<table id="table" class="display">
|
<table id="table" class="display">
|
||||||
<thead>
|
<thead>
|
||||||
|
<tr>
|
||||||
<th>Category</th>
|
<th>Category</th>
|
||||||
<th><img src="{{ STATIC_URL }}img/gentoo-icon.png" alt="gentoo" title="Versions in Gentoo" /></th>
|
<th><img src="{{ STATIC_URL }}img/gentoo-icon.png" alt="gentoo" title="Versions in Gentoo" /></th>
|
||||||
<th><img src="{{ STATIC_URL }}img/overlay-icon.png" alt="overlays" title="Versions in Overlays" /></th>
|
<th><img src="{{ STATIC_URL }}img/overlay-icon.png" alt="overlays" title="Versions in Overlays" /></th>
|
||||||
<th><img src="{{ STATIC_URL }}img/upstream-icon.png" alt="upstream" title="Versions only upstream" /></th>
|
<th><img src="{{ STATIC_URL }}img/upstream-icon.png" alt="upstream" title="Versions only upstream" /></th>
|
||||||
<th><img src="{{ STATIC_URL }}img/freshness-icon.png" title="Freshness" /></th>
|
<th><img src="{{ STATIC_URL }}img/freshness-icon.png" alt="freshness" title="Freshness" /></th>
|
||||||
{% if extras %}
|
{% if extras %}
|
||||||
<th>Graphs</th>
|
<th>Graphs</th>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{% for category in categories %}
|
{% for category in categories %}
|
||||||
|
@ -26,11 +26,11 @@
|
|||||||
{{ block.super }}
|
{{ block.super }}
|
||||||
<div class="menu notfirst-menu rounded">
|
<div class="menu notfirst-menu rounded">
|
||||||
<ul>
|
<ul>
|
||||||
<li><img src="{{ STATIC_URL }}img/gentoo-icon.png" /> Gentoo</li>
|
<li><img src="{{ STATIC_URL }}img/gentoo-icon.png" alt="gentoo" /> Gentoo</li>
|
||||||
<li><img src="{{ STATIC_URL }}img/overlay-icon.png" /> Overlays</li>
|
<li><img src="{{ STATIC_URL }}img/overlay-icon.png" alt="overlays" /> Overlays</li>
|
||||||
<li><img src="{{ STATIC_URL }}img/upstream-icon.png" /> Upstream</li>
|
<li><img src="{{ STATIC_URL }}img/upstream-icon.png" alt="upstream" /> Upstream</li>
|
||||||
<li><img src="{{ STATIC_URL }}img/unstable-icon.png" /> Unstable</li>
|
<li><img src="{{ STATIC_URL }}img/unstable-icon.png" alt="unstable" /> Unstable</li>
|
||||||
<li><img src="{{ STATIC_URL }}img/freshness-icon.png" /> Freshness</li>
|
<li><img src="{{ STATIC_URL }}img/freshness-icon.png" alt="freshness" /> Freshness</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -3,14 +3,16 @@
|
|||||||
|
|
||||||
<table id="table" class="display">
|
<table id="table" class="display">
|
||||||
<thead>
|
<thead>
|
||||||
|
<tr>
|
||||||
<th>Herd</th>
|
<th>Herd</th>
|
||||||
<th><img src="{{ STATIC_URL }}img/gentoo-icon.png" alt="gentoo" title="Versions in Gentoo" /></th>
|
<th><img src="{{ STATIC_URL }}img/gentoo-icon.png" alt="gentoo" title="Versions in Gentoo" /></th>
|
||||||
<th><img src="{{ STATIC_URL }}img/overlay-icon.png" alt="overlays" title="Versions in Overlays" /></th>
|
<th><img src="{{ STATIC_URL }}img/overlay-icon.png" alt="overlays" title="Versions in Overlays" /></th>
|
||||||
<th><img src="{{ STATIC_URL }}img/upstream-icon.png" alt="upstream" title="Versions only upstream" /></th>
|
<th><img src="{{ STATIC_URL }}img/upstream-icon.png" alt="upstream" title="Versions only upstream" /></th>
|
||||||
<th><img src="{{ STATIC_URL }}img/freshness-icon.png" title="Freshness" /></th>
|
<th><img src="{{ STATIC_URL }}img/freshness-icon.png" alt="freshness" title="Freshness" /></th>
|
||||||
{% if extras %}
|
{% if extras %}
|
||||||
<th>Graphs</th>
|
<th>Graphs</th>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{% for herd in herds %}
|
{% for herd in herds %}
|
||||||
|
@ -3,14 +3,16 @@
|
|||||||
|
|
||||||
<table id="table" class="display">
|
<table id="table" class="display">
|
||||||
<thead>
|
<thead>
|
||||||
|
<tr>
|
||||||
<th>Maintainer</th>
|
<th>Maintainer</th>
|
||||||
<th><img src="{{ STATIC_URL }}img/gentoo-icon.png" alt="gentoo" title="Versions in Gentoo" /></th>
|
<th><img src="{{ STATIC_URL }}img/gentoo-icon.png" alt="gentoo" title="Versions in Gentoo" /></th>
|
||||||
<th><img src="{{ STATIC_URL }}img/overlay-icon.png" alt="overlays" title="Versions in Overlays" /></th>
|
<th><img src="{{ STATIC_URL }}img/overlay-icon.png" alt="overlays" title="Versions in Overlays" /></th>
|
||||||
<th><img src="{{ STATIC_URL }}img/upstream-icon.png" alt="upstream" title="Versions only upstream" /></th>
|
<th><img src="{{ STATIC_URL }}img/upstream-icon.png" alt="upstream" title="Versions only upstream" /></th>
|
||||||
<th><img src="{{ STATIC_URL }}img/freshness-icon.png" title="Freshness" /></th>
|
<th><img src="{{ STATIC_URL }}img/freshness-icon.png" alt="freshness" title="Freshness" /></th>
|
||||||
{% if extras %}
|
{% if extras %}
|
||||||
<th>Graphs</th>
|
<th>Graphs</th>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{% for maintainer in maintainers %}
|
{% for maintainer in maintainers %}
|
||||||
|
@ -2,7 +2,9 @@
|
|||||||
|
|
||||||
<table id="table" class="display">
|
<table id="table" class="display">
|
||||||
<thead>
|
<thead>
|
||||||
|
<tr>
|
||||||
<th>Overlay</th>
|
<th>Overlay</th>
|
||||||
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{% for overlay in overlays %}
|
{% for overlay in overlays %}
|
||||||
|
@ -47,7 +47,7 @@
|
|||||||
<dd>
|
<dd>
|
||||||
<ul>
|
<ul>
|
||||||
{% for version in packaged %}
|
{% for version in packaged %}
|
||||||
<li id="{{ version.version }}-{{version.revision }}:{{ version.slot }}-[{{ version.overlay }}]">
|
<li id="version-{{ version.version }}-{{version.revision }}:{{ version.slot }}-{{ version.overlay }}">
|
||||||
{% if version.overlay == "gentoo" %}
|
{% if version.overlay == "gentoo" %}
|
||||||
<img src="{{ STATIC_URL }}img/gentoo-icon.png" alt="gentoo" title="In Gentoo" />
|
<img src="{{ STATIC_URL }}img/gentoo-icon.png" alt="gentoo" title="In Gentoo" />
|
||||||
{% else %}
|
{% else %}
|
||||||
@ -69,7 +69,7 @@
|
|||||||
<dd>
|
<dd>
|
||||||
<ul>
|
<ul>
|
||||||
{% for version in upstream %}
|
{% for version in upstream %}
|
||||||
<li>
|
<li id="version-{{ version.version }}-{{version.revision }}:{{ version.slot }}-{{ version.overlay }}">
|
||||||
<img src="{{ STATIC_URL }}img/upstream-icon.png" alt="upstream" title="Upstream" />
|
<img src="{{ STATIC_URL }}img/upstream-icon.png" alt="upstream" title="Upstream" />
|
||||||
|
|
||||||
{% if version.vtype and not version.vtype|is_stable %}
|
{% if version.vtype and not version.vtype|is_stable %}
|
||||||
@ -87,7 +87,7 @@
|
|||||||
{% if log %}
|
{% if log %}
|
||||||
<dt>euscan log</dt>
|
<dt>euscan log</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<p>Date: {{ log.datetime }}
|
<p>Date: {{ log.datetime }}</p>
|
||||||
<pre class="log">{{ msg|ansi_to_html|safe }}</pre>
|
<pre class="log">{{ msg|ansi_to_html|safe }}</pre>
|
||||||
</dd>
|
</dd>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
|
|
||||||
<table id="table" class="display">
|
<table id="table" class="display">
|
||||||
<thead>
|
<thead>
|
||||||
|
<tr>
|
||||||
<th>Package</th>
|
<th>Package</th>
|
||||||
<th><img src="{{ STATIC_URL }}img/gentoo-icon.png" alt="gentoo" title="Last version in Gentoo" /></th>
|
<th><img src="{{ STATIC_URL }}img/gentoo-icon.png" alt="gentoo" title="Last version in Gentoo" /></th>
|
||||||
<th><img src="{{ STATIC_URL }}img/overlay-icon.png" alt="overlays" title="Last version in Overlays" /></th>
|
<th><img src="{{ STATIC_URL }}img/overlay-icon.png" alt="overlays" title="Last version in Overlays" /></th>
|
||||||
@ -15,7 +16,8 @@
|
|||||||
<th><img src="{{ STATIC_URL }}img/gentoo-icon.png" alt="gentoo" title="Versions in Gentoo" /></th>
|
<th><img src="{{ STATIC_URL }}img/gentoo-icon.png" alt="gentoo" title="Versions in Gentoo" /></th>
|
||||||
<th><img src="{{ STATIC_URL }}img/overlay-icon.png" alt="overlays" title="Versions in Overlays" /></th>
|
<th><img src="{{ STATIC_URL }}img/overlay-icon.png" alt="overlays" title="Versions in Overlays" /></th>
|
||||||
<th><img src="{{ STATIC_URL }}img/upstream-icon.png" alt="upstream" title="Versions only upstream" /></th>
|
<th><img src="{{ STATIC_URL }}img/upstream-icon.png" alt="upstream" title="Versions only upstream" /></th>
|
||||||
<th><img src="{{ STATIC_URL }}img/freshness-icon.png" title="Freshness" /></th>
|
<th><img src="{{ STATIC_URL }}img/freshness-icon.png" alt="freshness" title="Freshness" /></th>
|
||||||
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{% for package in packages %}
|
{% for package in packages %}
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
<p>
|
<p>
|
||||||
Powered by:
|
Powered by:
|
||||||
<a href="http://kernel.org" titke="Linux Kernel">
|
<a href="http://kernel.org" title="Linux Kernel">
|
||||||
<img src="{{STATIC_URL}}img/linux.png" alt="Linux Kernel" />
|
<img src="{{STATIC_URL}}img/linux.png" alt="Linux Kernel" />
|
||||||
</a>
|
</a>
|
||||||
<a href="http://gentoo.org" title="Gentoo">
|
<a href="http://gentoo.org" title="Gentoo">
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
<h2>API</h2>
|
<h2>API</h2>
|
||||||
|
|
||||||
<p>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="{% url "api.views.root" 'json' %}">/api/1.0/api.json</a></li>
|
<li><a href="{% url "api.views.root" 'json' %}">/api/1.0/api.json</a></li>
|
||||||
<li><a href="{% url "api.views.statistics" 'json' %}">/api/1.0/statistics.json</a></li>
|
<li><a href="{% url "api.views.statistics" 'json' %}">/api/1.0/statistics.json</a></li>
|
||||||
@ -18,7 +17,6 @@
|
|||||||
<li>/api/1.0/package/<category>/<package>.json</li>
|
<li>/api/1.0/package/<category>/<package>.json</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
Formats: xml, yaml and json
|
<p>Formats: xml, yaml and json</p>
|
||||||
</p>
|
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -24,10 +24,10 @@
|
|||||||
{% if user.is_authenticated %}
|
{% if user.is_authenticated %}
|
||||||
<span class="pull-right">
|
<span class="pull-right">
|
||||||
<button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_category" category %}">
|
<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" >
|
<img src="{{ STATIC_URL}}/img/watch-icon.png" alt="Watch" />
|
||||||
</button>
|
</button>
|
||||||
<button class="btn unfavourite-button {% if not favourited %}hide{% endif %}" data-url="{% url "unfavourite_category" category %}">
|
<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" >
|
<img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" />
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
@ -35,22 +35,22 @@
|
|||||||
|
|
||||||
{% packages packages %}
|
{% packages packages %}
|
||||||
|
|
||||||
<h3>Statistics</h2>
|
<h3>Statistics</h3>
|
||||||
<h4>Current statistics</h4>
|
<h4>Current statistics</h4>
|
||||||
<p>
|
<p>
|
||||||
<img src="{% url "chart_category" category 'pie-versions' %}" />
|
<img alt="pie versions" src="{% url "chart_category" category 'pie-versions' %}" />
|
||||||
<img src="{% url "chart_category" category 'pie-packages' %}" />
|
<img alt="pie packages" src="{% url "chart_category" category 'pie-packages' %}" />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h4>All Time</h4>
|
<h4>All Time</h4>
|
||||||
<p>
|
<p>
|
||||||
<img src="{% url "chart_category" category 'versions-weekly' %}" />
|
<img alt="versions weekly" src="{% url "chart_category" category 'versions-weekly' %}" />
|
||||||
<img src="{% url "chart_category" category 'versions-monthly' %}" />
|
<img alt="versions monthly" src="{% url "chart_category" category 'versions-monthly' %}" />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<img src="{% url "chart_category" category 'packages-weekly' %}" />
|
<img alt="packages weekly" src="{% url "chart_category" category 'packages-weekly' %}" />
|
||||||
<img src="{% url "chart_category" category 'packages-monthly' %}" />
|
<img alt="packages monthly" src="{% url "chart_category" category 'packages-monthly' %}" />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
@ -78,9 +78,9 @@ $(document).ready(function () {
|
|||||||
<div class="menu rounded notfirst-menu">
|
<div class="menu rounded notfirst-menu">
|
||||||
<dl>
|
<dl>
|
||||||
<dt>Versions</dt>
|
<dt>Versions</dt>
|
||||||
<dd><img src="{% url "chart_category" category 'versions-monthly-small' %}" /></dd>
|
<dd><img alt="versions" src="{% url "chart_category" category 'versions-monthly-small' %}" /></dd>
|
||||||
<dt>Packages</dt>
|
<dt>Packages</dt>
|
||||||
<dd><img src="{% url "chart_category" category 'packages-monthly-small' %}" /></dd>
|
<dd><img alt="packages" src="{% url "chart_category" category 'packages-monthly-small' %}" /></dd>
|
||||||
</dl>
|
</dl>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
<h4>Usage examples</h4>
|
<h4>Usage examples</h4>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="{% url "global_feed" %}?portage_info=0&show_removals=0">{% url "global_feed" %}?portage_info=0&show_removals=0</a></li>
|
<li><a href="{% url "global_feed" %}?portage_info=0&show_removals=0">{% url "global_feed" %}?portage_info=0&show_removals=0</a></li>
|
||||||
<li><a href="{% url "global_feed" %}?ignore_pre=true">{% url "global_feed" %}?ignore_pre=true</a></li>
|
<li><a href="{% url "global_feed" %}?ignore_pre=true">{% url "global_feed" %}?ignore_pre=true</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -23,10 +23,10 @@
|
|||||||
{% if user.is_authenticated %}
|
{% if user.is_authenticated %}
|
||||||
<span class="pull-right">
|
<span class="pull-right">
|
||||||
<button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_herd" herd.herd %}">
|
<button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_herd" herd.herd %}">
|
||||||
<img src="{{ STATIC_URL}}/img/watch-icon.png" alt="Watch" >
|
<img src="{{ STATIC_URL}}/img/watch-icon.png" alt="Watch" />
|
||||||
</button>
|
</button>
|
||||||
<button class="btn unfavourite-button {% if not favourited %}hide{% endif %}" data-url="{% url "unfavourite_herd" herd.herd %}">
|
<button class="btn unfavourite-button {% if not favourited %}hide{% endif %}" data-url="{% url "unfavourite_herd" herd.herd %}">
|
||||||
<img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" >
|
<img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" />
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
@ -34,21 +34,21 @@
|
|||||||
</h2>
|
</h2>
|
||||||
{% packages packages %}
|
{% packages packages %}
|
||||||
|
|
||||||
<h3>Statistics</h2>
|
<h3>Statistics</h3>
|
||||||
<h4>Current statistics</h4>
|
<h4>Current statistics</h4>
|
||||||
<p>
|
<p>
|
||||||
<img src="{% url "chart_herd" herd.herd 'pie-versions' %}" />
|
<img alt="pie versions" src="{% url "chart_herd" herd.herd 'pie-versions' %}" />
|
||||||
<img src="{% url "chart_herd" herd.herd 'pie-packages' %}" />
|
<img alt="pie packages" src="{% url "chart_herd" herd.herd 'pie-packages' %}" />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h4>All Time</h4>
|
<h4>All Time</h4>
|
||||||
<p>
|
<p>
|
||||||
<img src="{% url "chart_herd" herd.herd 'versions-weekly' %}" />
|
<img alt="versions weekly" src="{% url "chart_herd" herd.herd 'versions-weekly' %}" />
|
||||||
<img src="{% url "chart_herd" herd.herd 'versions-monthly' %}" />
|
<img alt="versions monthly" src="{% url "chart_herd" herd.herd 'versions-monthly' %}" />
|
||||||
<p>
|
|
||||||
</p>
|
</p>
|
||||||
<img src="{% url "chart_herd" herd.herd 'packages-weekly' %}" />
|
<p>
|
||||||
<img src="{% url "chart_herd" herd.herd 'packages-monthly' %}" />
|
<img alt="packages weekly" src="{% url "chart_herd" herd.herd 'packages-weekly' %}" />
|
||||||
|
<img alt="packages monthly" src="{% url "chart_herd" herd.herd 'packages-monthly' %}" />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
@ -76,9 +76,9 @@ $(document).ready(function () {
|
|||||||
<div class="menu rounded notfirst-menu">
|
<div class="menu rounded notfirst-menu">
|
||||||
<dl>
|
<dl>
|
||||||
<dt>Versions</dt>
|
<dt>Versions</dt>
|
||||||
<dd><img src="{% url "chart_herd" herd.herd 'versions-monthly-small' %}" /></dd>
|
<dd><img alt="versions" src="{% url "chart_herd" herd.herd 'versions-monthly-small' %}" /></dd>
|
||||||
<dt>Packages</dt>
|
<dt>Packages</dt>
|
||||||
<dd><img src="{% url "chart_herd" herd.herd 'packages-monthly-small' %}" /></dd>
|
<dd><img alt="packages" src="{% url "chart_herd" herd.herd 'packages-monthly-small' %}" /></dd>
|
||||||
</dl>
|
</dl>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -19,14 +19,14 @@
|
|||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h2>
|
<h2>
|
||||||
Maintainer: {{ maintainer.name }} <{{ maintainer.email }}>
|
Maintainer: {{ maintainer.name }} <{{ maintainer.email }}>
|
||||||
{% if user.is_authenticated %}
|
{% if user.is_authenticated %}
|
||||||
<span class="pull-right">
|
<span class="pull-right">
|
||||||
<button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_maintainer" maintainer.id %}">
|
<button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_maintainer" maintainer.id %}">
|
||||||
<img src="{{ STATIC_URL}}/img/watch-icon.png" alt="Watch" >
|
<img src="{{ STATIC_URL}}/img/watch-icon.png" alt="Watch" />
|
||||||
</button>
|
</button>
|
||||||
<button class="btn unfavourite-button {% if not favourited %}hide{% endif %}" data-url="{% url "unfavourite_maintainer" maintainer.id %}">
|
<button class="btn unfavourite-button {% if not favourited %}hide{% endif %}" data-url="{% url "unfavourite_maintainer" maintainer.id %}">
|
||||||
<img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" >
|
<img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" />
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
@ -34,22 +34,22 @@
|
|||||||
|
|
||||||
{% packages packages %}
|
{% packages packages %}
|
||||||
|
|
||||||
<h3>Statistics</h2>
|
<h3>Statistics</h3>
|
||||||
<h4>Current statistics</h4>
|
<h4>Current statistics</h4>
|
||||||
<p>
|
<p>
|
||||||
<img src="{% url "chart_maintainer" maintainer.id 'pie-versions' %}" />
|
<img alt="pie versions" src="{% url "chart_maintainer" maintainer.id 'pie-versions' %}" />
|
||||||
<img src="{% url "chart_maintainer" maintainer.id 'pie-packages' %}" />
|
<img alt="pie packages" src="{% url "chart_maintainer" maintainer.id 'pie-packages' %}" />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h4>All Time</h4>
|
<h4>All Time</h4>
|
||||||
<p>
|
<p>
|
||||||
<img src="{% url "chart_maintainer" maintainer.id 'versions-weekly' %}" />
|
<img alt="version weekly" src="{% url "chart_maintainer" maintainer.id 'versions-weekly' %}" />
|
||||||
<img src="{% url "chart_maintainer" maintainer.id 'versions-monthly' %}" />
|
<img alt="versions monthly" src="{% url "chart_maintainer" maintainer.id 'versions-monthly' %}" />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<img src="{% url "chart_maintainer" maintainer.id 'packages-weekly' %}" />
|
<img alt="packages weekly" src="{% url "chart_maintainer" maintainer.id 'packages-weekly' %}" />
|
||||||
<img src="{% url "chart_maintainer" maintainer.id 'packages-monthly' %}" />
|
<img alt="packages monthly" src="{% url "chart_maintainer" maintainer.id 'packages-monthly' %}" />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
@ -77,9 +77,9 @@ $(document).ready(function () {
|
|||||||
<div class="menu rounded notfirst-menu">
|
<div class="menu rounded notfirst-menu">
|
||||||
<dl>
|
<dl>
|
||||||
<dt>Versions</dt>
|
<dt>Versions</dt>
|
||||||
<dd><img src="{% url "chart_maintainer" maintainer.id 'versions-monthly-small' %}" /></dd>
|
<dd><img alt="versions" src="{% url "chart_maintainer" maintainer.id 'versions-monthly-small' %}" /></dd>
|
||||||
<dt>Packages</dt>
|
<dt>Packages</dt>
|
||||||
<dd><img src="{% url "chart_maintainer" maintainer.id 'packages-monthly-small' %}" /></dd>
|
<dd><img alt="packages" src="{% url "chart_maintainer" maintainer.id 'packages-monthly-small' %}" /></dd>
|
||||||
</dl>
|
</dl>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -13,10 +13,10 @@
|
|||||||
{% if user.is_authenticated %}
|
{% if user.is_authenticated %}
|
||||||
<span class="pull-right">
|
<span class="pull-right">
|
||||||
<button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_overlay" overlay %}">
|
<button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_overlay" overlay %}">
|
||||||
<img src="{{ STATIC_URL}}/img/watch-icon.png" alt="Watch" >
|
<img src="{{ STATIC_URL}}/img/watch-icon.png" alt="Watch" />
|
||||||
</button>
|
</button>
|
||||||
<button class="btn unfavourite-button {% if not favourited %}hide{% endif %}" data-url="{% url "unfavourite_overlay" overlay %}">
|
<button class="btn unfavourite-button {% if not favourited %}hide{% endif %}" data-url="{% url "unfavourite_overlay" overlay %}">
|
||||||
<img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" >
|
<img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" />
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -36,16 +36,16 @@
|
|||||||
{% if user.is_authenticated %}
|
{% if user.is_authenticated %}
|
||||||
<span class="pull-right">
|
<span class="pull-right">
|
||||||
<button class="btn refresh-button {% if refresh_requested %}hide{% endif %}" data-category="{{ package.category }}" data-package="{{ package.name }}">
|
<button class="btn refresh-button {% if refresh_requested %}hide{% endif %}" data-category="{{ package.category }}" data-package="{{ package.name }}">
|
||||||
<img src="{{ STATIC_URL}}/img/refresh-active.png" alt="Refresh" >
|
<img src="{{ STATIC_URL}}/img/refresh-active.png" alt="Refresh" />
|
||||||
</button>
|
</button>
|
||||||
<button class="btn refresh-button-disabled disabled {% if not refresh_requested %}hide{% endif %}">
|
<button class="btn refresh-button-disabled disabled {% if not refresh_requested %}hide{% endif %}">
|
||||||
<img src="{{ STATIC_URL}}/img/refresh-inactive.png" alt="Refresh" >
|
<img src="{{ STATIC_URL}}/img/refresh-inactive.png" alt="Refresh" />
|
||||||
</button>
|
</button>
|
||||||
<button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_package" package.category package.name %}">
|
<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" >
|
<img src="{{ STATIC_URL}}/img/watch-icon.png" alt="Watch" />
|
||||||
</button>
|
</button>
|
||||||
<button class="btn unfavourite-button {% if not favourited %}hide{% endif %}" data-url="{% url "unfavourite_package" package.category package.name %}">
|
<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" >
|
<img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" />
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -6,15 +6,15 @@
|
|||||||
<h2>Statistics</h2>
|
<h2>Statistics</h2>
|
||||||
|
|
||||||
<h3>Current statistics</h3>
|
<h3>Current statistics</h3>
|
||||||
<img src="{% url "chart" 'pie-versions' %}" />
|
<img alt="pie versions" src="{% url "chart" 'pie-versions' %}" />
|
||||||
<img src="{% url "chart" 'pie-packages' %}" />
|
<img alt="pie packages" src="{% url "chart" 'pie-packages' %}" />
|
||||||
|
|
||||||
<h3>All time statistics</h3>
|
<h3>All time statistics</h3>
|
||||||
|
|
||||||
<img src="{% url "chart" 'packages-weekly' %}" />
|
<img alt="packages weekly" src="{% url "chart" 'packages-weekly' %}" />
|
||||||
<img src="{% url "chart" 'packages-monthly' %}" />
|
<img alt="packages monthly" src="{% url "chart" 'packages-monthly' %}" />
|
||||||
|
|
||||||
<img src="{% url "chart" 'versions-weekly' %}" />
|
<img alt="versions weekly" src="{% url "chart" 'versions-weekly' %}" />
|
||||||
<img src="{% url "chart" 'versions-monthly' %}" />
|
<img alt="versions monthly" src="{% url "chart" 'versions-monthly' %}" />
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -13,10 +13,10 @@
|
|||||||
{% if user.is_authenticated %}
|
{% if user.is_authenticated %}
|
||||||
<span class="pull-right">
|
<span class="pull-right">
|
||||||
<button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_world" %}">
|
<button class="btn favourite-button {% if favourited %}hide{% endif %}" data-url="{% url "favourite_world" %}">
|
||||||
<img src="{{ STATIC_URL}}/img/watch-icon.png" alt="Watch" >
|
<img src="{{ STATIC_URL}}/img/watch-icon.png" alt="Watch" />
|
||||||
</button>
|
</button>
|
||||||
<button class="btn unfavourite-button {% if not favourited %}hide{% endif %}" data-url="{% url "unfavourite_world" %}">
|
<button class="btn unfavourite-button {% if not favourited %}hide{% endif %}" data-url="{% url "unfavourite_world" %}">
|
||||||
<img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" >
|
<img src="{{ STATIC_URL}}/img/unwatch-icon.png" alt="Unwatch" />
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
Reference in New Issue
Block a user