summaryrefslogtreecommitdiff
path: root/lkft/templates/lkft-file-bug.html
blob: b20a2374f25ee74ecfbad0b7589c3079f69b8191 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends '_layouts/base.html' %}

{% block title %} Bug Creation {% endblock %}

{% block headline %}<h1>Bug Creation</h1>{% endblock %}

{% block content %}
<div align="center">
{% if not from.errors and submit_result %}
<div>Bug created successfully <a href="{{build_info.bugzilla_show_bug_prefix}}{{build_info.bug_id}}">{{build_info.bug_id}}</a></div>

{% else %}
<div>{{ form.errors }}</div>
<form action="/report/file-bug/" method="post">
    {% csrf_token %}
    <table border="2" >
    {{ form.as_table }}
    </table>
    <input type="submit" id="submit_btn" value="submit" />
</form>
{% endif %}
</div>
{% endblock %}