Mercurial > libervia-templates
annotate default/ticket/create.html @ 60:f3c0447b8b4c
ticket/create: body is now required
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 11 Nov 2017 00:14:23 +0100 |
parents | 232eb1b4cd89 |
children | e7b62f6980a1 |
rev | line source |
---|---|
56 | 1 {% extends 'base/base.html' %} |
2 {% import 'input/form.html' as form with context %} | |
3 {% import 'input/field.html' as field with context %} | |
4 {% import 'input/xmlui.html' as xmlui with context %} | |
5 | |
6 {% block body %} | |
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> | |
9 </div> | |
10 <div class="create single ticket box"> | |
11 {% call form.form() %} | |
59
232eb1b4cd89
ticket/create: use new attributes arguments to set placeholders and required field on title
Goffi <goffi@goffi.org>
parents:
56
diff
changeset
|
12 {{ xmlui.generate(new_ticket_xmlui, |
232eb1b4cd89
ticket/create: use new attributes arguments to set placeholders and required field on title
Goffi <goffi@goffi.org>
parents:
56
diff
changeset
|
13 attributes = {'title': {'required': 'required', |
232eb1b4cd89
ticket/create: use new attributes arguments to set placeholders and required field on title
Goffi <goffi@goffi.org>
parents:
56
diff
changeset
|
14 'placeholder': _("Short description of your issue/request")}, |
60 | 15 'body': {'required': 'required', |
16 'placeholder': _("Please describe your issue/request with as much details as possible")}, | |
59
232eb1b4cd89
ticket/create: use new attributes arguments to set placeholders and required field on title
Goffi <goffi@goffi.org>
parents:
56
diff
changeset
|
17 'labels': {'placeholder': _("You can enter one or several labels separated by commas")}, |
232eb1b4cd89
ticket/create: use new attributes arguments to set placeholders and required field on title
Goffi <goffi@goffi.org>
parents:
56
diff
changeset
|
18 })}} |
56 | 19 {{ field.submit(_("Create ticket")) }} |
20 {% endcall %} | |
21 </div> | |
22 {% endblock body %} |