iso_overview.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {% extends "base.html" %}
  2. {% load static from staticfiles %}
  3. {% block content %}
  4. <div class="box">
  5. <h2>Failures and Successes for Testing ISOs</h2>
  6. <p>This is an overview showing all current or tested release engineering
  7. produced ISOs. Past but now unavailable ISOs are ommitted if there were
  8. never any testing results submitted. To help improve ISO quality, you are
  9. encouraged to <a href="{% url 'releng-test-submit' %}">give feedback</a>
  10. if you have tested and used any ISOs. Both successful and failed results
  11. are encouraged and welcome.</p>
  12. <p><a href="{% url 'releng-test-overview' %}">Go back to testing results</a></p>
  13. <table id="releng-result" class="results">
  14. <thead>
  15. <tr>
  16. <th>ISO</th>
  17. <th>Currently Available</th>
  18. <th># Successes</th>
  19. <th># Failures</th>
  20. </tr>
  21. </thead>
  22. <tbody>
  23. {% for iso in isos %}
  24. <tr>
  25. <td>
  26. <a href="{{ iso.get_absolute_url }}">{{ iso.name }}</a>
  27. </td>
  28. <td>{{ iso.active|yesno|capfirst }}</td>
  29. <td>{{ iso.successes }}</td>
  30. <td>{{ iso.failures }}</td>
  31. </tr>
  32. {% endfor %}
  33. </tbody>
  34. </table>
  35. </div>
  36. {% endblock %}
  37. {% block script_block %}
  38. {% load cdn %}{% jquery %}{% jquery_tablesorter %}
  39. <script type="text/javascript" src="{% static "archweb.js" %}"></script>
  40. <script type="text/javascript">
  41. $(document).ready(function() {
  42. $(".results:not(:has(tbody tr.empty))").tablesorter({widgets: ['zebra']});
  43. });
  44. </script>
  45. {% endblock %}