diff --git a/euscanwww/templates/euscan/categories.html b/euscanwww/templates/euscan/categories.html
index 30f413a..a26dfab 100644
--- a/euscanwww/templates/euscan/categories.html
+++ b/euscanwww/templates/euscan/categories.html
@@ -15,6 +15,9 @@
Gentoo |
Overlays |
Unpackaged |
+ {% if request.GET.extras %}
+ Graphs |
+ {% endif %}
{% for category in categories %}
@@ -24,6 +27,12 @@
{% package_bar category %}
{% package_cols category %}
+ {% if request.GET.extras %}
+
+
+
+ |
+ {% endif %}
{% endfor %}
diff --git a/euscanwww/templates/euscan/herds.html b/euscanwww/templates/euscan/herds.html
index f5ab5f3..a0c718c 100644
--- a/euscanwww/templates/euscan/herds.html
+++ b/euscanwww/templates/euscan/herds.html
@@ -14,6 +14,9 @@
Gentoo |
Overlays |
Unpackaged |
+ {% if request.GET.extras %}
+ Graphs |
+ {% endif %}
{% for herd in herds %}
@@ -25,6 +28,12 @@
{% package_bar herd %}
{% package_cols herd %}
+ {% if request.GET.extras %}
+
+
+
+ |
+ {% endif %}
{% endfor %}
diff --git a/euscanwww/templates/euscan/maintainers.html b/euscanwww/templates/euscan/maintainers.html
index c84a5a3..2b15e9d 100644
--- a/euscanwww/templates/euscan/maintainers.html
+++ b/euscanwww/templates/euscan/maintainers.html
@@ -14,6 +14,9 @@
Gentoo |
Overlays |
Unpackaged |
+ {% if request.GET.extras %}
+ Graphs |
+ {% endif %}
{% for maintainer in maintainers %}
@@ -29,6 +32,12 @@
{% package_bar maintainer %}
{% package_cols maintainer %}
+ {% if request.GET.extras %}
+
+
+
+ |
+ {% endif %}
{% endfor %}