1 2 3 4 5 6 7 8 9 10 11 12 13
{% extends "base.html" %} {% block title %}Arch Linux - Test Result Entry{% endblock %} {% block content %} <div class="box"> <h2>Arch releng iso build test result entry</h2> <form action="" method="post">{% csrf_token %} {{ form.as_p }} <input type="submit" value="Submit" /> </form> </div> {% endblock %}