summaryrefslogtreecommitdiff
path: root/website/templates/bug-form.html
blob: d27911a300ea0febb29807dcf5d2e8b2ed626a51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<form id="bug-form" action="" method="POST" accept-charset="utf-8"> {% csrf_token %}
    {{ form.example }}
    <div id="non-field-errors">
    </div>
    <div id="id_issue_wrapper" class="wrapper">
        <label>Type of issue:</label>
        {{ form.issue }}
    </div>

    <div id="id_description_wrapper" class="wrapper">
        <label>Description:</label>
        {{ form.description }}
    </div>

    <div id="id_notify_wrapper" class="wrapper">
        <label>{{ form.notify }} I want to be notified.</label>
    </div>

    <div id="id_email_wrapper" class="wrapper">
        <span id="email-wrapper">
            {{ form.email.errors }}
            <label>Email:</label>
            {{ form.email }}
        </span>
    </div>
    <input type="submit" id="bug-form-submit">
</form>