add.html 1.2 KB

12345678910111213141516171819202122232425262728
  1. {% extends "base.html" %}
  2. {% block title %}{{ BRANDING_DISTRONAME }} - Test Result Entry{% endblock %}
  3. {% block content %}
  4. <div class="box">
  5. <h2>{{ BRANDING_SHORTNAME }} Releng Testbuild Feedback Entry</h2>
  6. <p>This page allows you to submit feedback after testing an {{ BRANDING_DISTRONAME }} installation
  7. using a release engineering testbuild. Mark all the options you used during the
  8. installation; at the end you can specify whether everything went OK. Be
  9. sure to only denote a successful install after having checked the
  10. installation properly. Some options require you to check several things (such as
  11. config files), this will be mentioned alongside the option.</p>
  12. <p>There is also an overview of all feedback on the
  13. <a href="{% url 'releng-test-overview' %}">results page</a>. Once we have
  14. builds that are properly tested (enough successful feedback for all
  15. important features of the ISO or a slightly earlier ISO), we can release new
  16. official media.</p>
  17. <div id="releng-feedback"> <form action="" method="post">{% csrf_token %}
  18. {{ form.as_p }}
  19. <input type="submit" value="Submit" />
  20. </form>
  21. </div>
  22. </div>
  23. {% endblock %}