2014-07-06 17:37:54 +02:00
|
|
|
<div class="box">
|
2016-05-26 13:01:23 +02:00
|
|
|
{{#bs-form
|
|
|
|
formLayout="horizontal"
|
|
|
|
model=this
|
2016-08-20 23:41:27 +02:00
|
|
|
novalidate=true
|
2018-12-29 20:35:04 +01:00
|
|
|
onSubmit=(action "submit")
|
|
|
|
as |form|
|
2016-05-26 13:01:23 +02:00
|
|
|
}}
|
2018-10-28 22:54:14 +01:00
|
|
|
{{form.element
|
2016-08-26 00:10:22 +02:00
|
|
|
autofocus=true
|
2018-12-29 20:35:04 +01:00
|
|
|
classNames="title"
|
2016-05-26 13:01:23 +02:00
|
|
|
controlType="text"
|
2018-12-29 20:35:04 +01:00
|
|
|
label=(t "create.meta.input.title.label")
|
|
|
|
placeholder=(t "create.meta.input.title.placeholder")
|
2016-05-26 13:01:23 +02:00
|
|
|
property="title"
|
2014-10-18 21:07:21 +02:00
|
|
|
}}
|
2018-10-28 22:54:14 +01:00
|
|
|
{{form.element
|
2018-12-29 20:35:04 +01:00
|
|
|
classNames="description"
|
2016-05-26 13:01:23 +02:00
|
|
|
controlType="textarea"
|
2018-12-29 20:35:04 +01:00
|
|
|
label=(t "create.meta.input.description.label")
|
|
|
|
placeholder=(t "create.meta.input.description.placeholder")
|
2016-05-26 13:01:23 +02:00
|
|
|
property="description"
|
2014-10-18 21:07:21 +02:00
|
|
|
}}
|
2016-09-23 19:39:31 +02:00
|
|
|
{{form-navigation-buttons
|
2019-02-24 00:32:37 +01:00
|
|
|
onPrev=(action "previousPage")
|
2016-09-23 19:39:31 +02:00
|
|
|
}}
|
2016-05-26 13:01:23 +02:00
|
|
|
{{/bs-form}}
|
2015-04-02 20:28:35 +02:00
|
|
|
</div>
|