comparison default/ticket/create.html @ 59:232eb1b4cd89

ticket/create: use new attributes arguments to set placeholders and required field on title
author Goffi <goffi@goffi.org>
date Thu, 09 Nov 2017 08:06:03 +0100
parents ea67eba3199d
children f3c0447b8b4c
comparison
equal deleted inserted replaced
58:4347910cc594 59:232eb1b4cd89
7 <div class='instructions'> 7 <div class='instructions'>
8 <p><span class="box">{% trans app_name=C.APP_NAME%}This page allows you to report an issue or ask/suggest a new feature for {{app_name}}{% endtrans %}</span></p> 8 <p><span class="box">{% trans app_name=C.APP_NAME%}This page allows you to report an issue or ask/suggest a new feature for {{app_name}}{% endtrans %}</span></p>
9 </div> 9 </div>
10 <div class="create single ticket box"> 10 <div class="create single ticket box">
11 {% call form.form() %} 11 {% call form.form() %}
12 {{ xmlui.generate(new_ticket_xmlui) }} 12 {{ xmlui.generate(new_ticket_xmlui,
13 attributes = {'title': {'required': 'required',
14 'placeholder': _("Short description of your issue/request")},
15 'body': {'placeholder': _("Please describe your issue/request with as much details as possible")},
16 'labels': {'placeholder': _("You can enter one or several labels separated by commas")},
17 })}}
13 {{ field.submit(_("Create ticket")) }} 18 {{ field.submit(_("Create ticket")) }}
14 {% endcall %} 19 {% endcall %}
15 </div> 20 </div>
16 {% endblock body %} 21 {% endblock body %}