diff --git a/euscanwww/djeuscan/feeds.py b/euscanwww/djeuscan/feeds.py
index 9306bcb..5836d87 100644
--- a/euscanwww/djeuscan/feeds.py
+++ b/euscanwww/djeuscan/feeds.py
@@ -43,8 +43,10 @@ class BaseFeed(Feed):
def item_link(self, vlog):
kwargs = {'category': vlog.package.category,
'package': vlog.package.name}
- return "%s#%s" % (reverse('djeuscan.views.package', kwargs=kwargs),
- vlog.tag())
+ return "%s#version-%s-%s:%s-%s" % (
+ reverse('djeuscan.views.package', kwargs=kwargs),
+ vlog.version, vlog.revision, vlog.slot, vlog.overlay,
+ )
def item_pubdate(self, vlog):
return vlog.datetime
diff --git a/euscanwww/djeuscan/templates/_base.html b/euscanwww/djeuscan/templates/_base.html
index 35a3e4b..2d26a33 100644
--- a/euscanwww/djeuscan/templates/_base.html
+++ b/euscanwww/djeuscan/templates/_base.html
@@ -1,11 +1,13 @@
+
+
+
{% load url from future %}
{% load timedelta %}
-
-
+
{% block title %}euscan{% endblock %}
-
+
{% block meta %}
{% endblock %}
@@ -19,7 +21,7 @@
diff --git a/euscanwww/djeuscan/templates/euscan/_categories_table.html b/euscanwww/djeuscan/templates/euscan/_categories_table.html
index 891826f..d3571e2 100644
--- a/euscanwww/djeuscan/templates/euscan/_categories_table.html
+++ b/euscanwww/djeuscan/templates/euscan/_categories_table.html
@@ -3,14 +3,16 @@
- Category |
- |
- |
- |
- |
- {% if extras %}
- Graphs |
- {% endif %}
+
+ Category |
+ |
+ |
+ |
+ |
+ {% if extras %}
+ Graphs |
+ {% endif %}
+
{% for category in categories %}
diff --git a/euscanwww/djeuscan/templates/euscan/_datatable.html b/euscanwww/djeuscan/templates/euscan/_datatable.html
index b3b8a1d..6af9ba9 100644
--- a/euscanwww/djeuscan/templates/euscan/_datatable.html
+++ b/euscanwww/djeuscan/templates/euscan/_datatable.html
@@ -26,11 +26,11 @@
{{ block.super }}
{% endblock %}
diff --git a/euscanwww/djeuscan/templates/euscan/_herds_table.html b/euscanwww/djeuscan/templates/euscan/_herds_table.html
index f7e5b54..9f3f337 100644
--- a/euscanwww/djeuscan/templates/euscan/_herds_table.html
+++ b/euscanwww/djeuscan/templates/euscan/_herds_table.html
@@ -3,14 +3,16 @@
- Herd |
- |
- |
- |
- |
- {% if extras %}
- Graphs |
- {% endif %}
+
+ Herd |
+ |
+ |
+ |
+ |
+ {% if extras %}
+ Graphs |
+ {% endif %}
+
{% for herd in herds %}
diff --git a/euscanwww/djeuscan/templates/euscan/_maintainers_table.html b/euscanwww/djeuscan/templates/euscan/_maintainers_table.html
index ebd1748..bfbdd21 100644
--- a/euscanwww/djeuscan/templates/euscan/_maintainers_table.html
+++ b/euscanwww/djeuscan/templates/euscan/_maintainers_table.html
@@ -3,14 +3,16 @@
- Maintainer |
- |
- |
- |
- |
- {% if extras %}
- Graphs |
- {% endif %}
+
+ Maintainer |
+ |
+ |
+ |
+ |
+ {% if extras %}
+ Graphs |
+ {% endif %}
+
{% for maintainer in maintainers %}
diff --git a/euscanwww/djeuscan/templates/euscan/_overlays_table.html b/euscanwww/djeuscan/templates/euscan/_overlays_table.html
index f1a59f6..68409ca 100644
--- a/euscanwww/djeuscan/templates/euscan/_overlays_table.html
+++ b/euscanwww/djeuscan/templates/euscan/_overlays_table.html
@@ -2,7 +2,9 @@
- Overlay |
+
+ Overlay |
+
{% for overlay in overlays %}
diff --git a/euscanwww/djeuscan/templates/euscan/_package_details.html b/euscanwww/djeuscan/templates/euscan/_package_details.html
index 6204e90..b6a85ec 100644
--- a/euscanwww/djeuscan/templates/euscan/_package_details.html
+++ b/euscanwww/djeuscan/templates/euscan/_package_details.html
@@ -47,7 +47,7 @@
{% for version in packaged %}
- -
+
-
{% if version.overlay == "gentoo" %}
{% else %}
@@ -69,7 +69,7 @@
-
{% for version in upstream %}
- -
+
-
{% if version.vtype and not version.vtype|is_stable %}
@@ -77,7 +77,7 @@
{% endif %}
{{ version.version }} - {{ version.urls }}
- {% if confidence < 100 %}({{ version.confidence }}%){% endif %}
+ {% if confidence < 100 %}({{ version.confidence }}%){% endif %}
{% endfor %}
@@ -87,7 +87,7 @@
{% if log %}
- euscan log
-
-
Date: {{ log.datetime }}
+
Date: {{ log.datetime }}
{{ msg|ansi_to_html|safe }}
{% endif %}
diff --git a/euscanwww/djeuscan/templates/euscan/_packages.html b/euscanwww/djeuscan/templates/euscan/_packages.html
index b9cba44..4ecb9d3 100644
--- a/euscanwww/djeuscan/templates/euscan/_packages.html
+++ b/euscanwww/djeuscan/templates/euscan/_packages.html
@@ -8,14 +8,16 @@
- Package |
- |
- |
- |
- |
- |
- |
- |
+
+ Package |
+ |
+ |
+ |
+ |
+ |
+ |
+ |
+
{% for package in packages %}
diff --git a/euscanwww/djeuscan/templates/euscan/about.html b/euscanwww/djeuscan/templates/euscan/about.html
index 657edfb..83b5b87 100644
--- a/euscanwww/djeuscan/templates/euscan/about.html
+++ b/euscanwww/djeuscan/templates/euscan/about.html
@@ -25,17 +25,17 @@
Powered by:
-
-
+
+
-
+
-
+
-
+
{% endblock %}
diff --git a/euscanwww/djeuscan/templates/euscan/api.html b/euscanwww/djeuscan/templates/euscan/api.html
index 8157ddd..e3f5ce3 100644
--- a/euscanwww/djeuscan/templates/euscan/api.html
+++ b/euscanwww/djeuscan/templates/euscan/api.html
@@ -5,7 +5,6 @@
{% block content %}
API
-
-Formats: xml, yaml and json
-
+Formats: xml, yaml and json
{% endblock %}
diff --git a/euscanwww/djeuscan/templates/euscan/category.html b/euscanwww/djeuscan/templates/euscan/category.html
index 78768f9..85935bf 100644
--- a/euscanwww/djeuscan/templates/euscan/category.html
+++ b/euscanwww/djeuscan/templates/euscan/category.html
@@ -24,10 +24,10 @@
{% if user.is_authenticated %}
{% endif %}
@@ -35,22 +35,22 @@
{% packages packages %}
-Statistics
+Statistics
Current statistics
-
-
+
+
All Time
-
-
+
+
-
-
+
+