Parent: [591c74] (diff)

Child: [52254f] (diff)

Download this file

new_ticket.html    34 lines (29 with data), 735 Bytes

 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
28
29
30
31
32
33
34
{% extends g.theme.master %}
{% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}} / New Ticket{% endblock %}
{% block header %} {% endblock %}
{% block edit_box %}
<div class="editbox">
<div class="form_holder">
{{c.ticket_form.display(action=action, value=dict(super_id=super_id))}}
</div>
</div>
{% endblock %}
{% block extra_css %}
<style type="text/css">
input[name='ticket_form.summary']{
top: 5px;
position: absolute;
z-index: 21;
}
.markdown_edit textarea {
height: 100px;
}
</style>
{% endblock %}
{% block extra_js %}
<script type="text/javascript">
$(document).ready(function(){
$('input[name=ticket_form.summary]').focus();
});
</script>
{% endblock %}