results.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. {% extends "base.html" %}
  2. {% load wiki %}
  3. {% block title %}{{ BRANDING_DISTRONAME }} - Release Engineering Testbuild Results{% endblock %}
  4. {% block content %}
  5. <div class="box">
  6. <h2>Release Engineering Testbuild Results</h2>
  7. <p>This is an overview showing a test results matrix of release
  8. engineering produced ISOs. Various options and configurations are shown
  9. with last success and last failure results, if known. To help improve ISO
  10. quality, you are encouraged to <a href="{% url 'releng-test-submit' %}">give feedback</a>
  11. if you have tested and used any ISOs. Both successful and failed results
  12. are encouraged and welcome.</p>
  13. <p>For a overview of which ISOs tested best, have a look at
  14. the <a href="{% url 'releng-iso-overview' %}">overview</a>.</p>
  15. <p>For more information, see the <a
  16. href="{% wiki_url 'DeveloperWiki:releng_testimages_feedback' %}">documentation
  17. on the wiki</a>.</p>
  18. <p>All ISOs referenced on this page are available from
  19. <a href="{{ iso_url }}">{{ iso_url }}</a>.</p>
  20. <table>
  21. {% for option in options %}
  22. {% include "releng/result_section.html" %}
  23. {% endfor %}
  24. </table>
  25. </div>
  26. {% endblock %}