summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorjelle van der Waa <jelle@vdwaa.nl>2018-02-17 18:55:13 +0100
committerAngel Velásquez <angvp@archlinux.org>2018-02-17 12:55:13 -0500
commit875d50d8f23069515b865b28044fb572a14049ed (patch)
tree496de6fd9b257ac3a1d3bf20b8fcd66e789d6b1b /templates
parent15e4f75321f5c43198cc5a2a3709c817f885a08c (diff)
downloadarchweb-875d50d8f23069515b865b28044fb572a14049ed.tar.gz
archweb-875d50d8f23069515b865b28044fb572a14049ed.zip
Remove unused Iso Model (#82)
The ISO model was used for the releng feedback form which was removed earlier. All this code is therefore now unused.
Diffstat (limited to 'templates')
-rw-r--r--templates/releng/iso_overview.html49
1 files changed, 0 insertions, 49 deletions
diff --git a/templates/releng/iso_overview.html b/templates/releng/iso_overview.html
deleted file mode 100644
index 1a35ead4..00000000
--- a/templates/releng/iso_overview.html
+++ /dev/null
@@ -1,49 +0,0 @@
-{% extends "base.html" %}
-{% load static from staticfiles %}
-
-{% block content %}
-<div class="box">
- <h2>Failures and Successes for Testing ISOs</h2>
-
- <p>This is an overview showing all current or tested release engineering
- produced ISOs. Past but now unavailable ISOs are ommitted if there were
- never any testing results submitted. To help improve ISO quality, you are
- encouraged to <a href="{% url 'releng-test-submit' %}">give feedback</a>
- if you have tested and used any ISOs. Both successful and failed results
- are encouraged and welcome.</p>
- <p><a href="{% url 'releng-test-overview' %}">Go back to testing results</a></p>
-
- <table id="releng-result" class="results">
- <thead>
- <tr>
- <th>ISO</th>
- <th>Currently Available</th>
- <th># Successes</th>
- <th># Failures</th>
- </tr>
- </thead>
- <tbody>
- {% for iso in isos %}
- <tr>
- <td>
- <a href="{{ iso.get_absolute_url }}">{{ iso.name }}</a>
- </td>
- <td>{{ iso.active|yesno|capfirst }}</td>
- <td>{{ iso.successes }}</td>
- <td>{{ iso.failures }}</td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
-</div>
-{% endblock %}
-
-{% block script_block %}
-{% load cdn %}{% jquery %}{% jquery_tablesorter %}
-<script type="text/javascript" src="{% static "archweb.js" %}"></script>
-<script type="text/javascript">
-$(document).ready(function() {
- $(".results:not(:has(tbody tr.empty))").tablesorter({widgets: ['zebra']});
-});
-</script>
-{% endblock %}