hubl/src/views/job-offer/page-job-offer-create.pug

28 lines
862 B
Plaintext
Raw Normal View History

.content-box.with-padding.with-form
2019-05-14 15:32:42 +00:00
h1 Post a new job offer
2020-06-18 18:02:54 +00:00
solid-form(
data-src=`${endpoints.joboffers || endpoints.post.joboffers}`
range-skills=`${endpoints.skills || endpoints.get.skills}`
2020-04-02 16:09:23 +00:00
fields='title, description, skills, closingDate'
class-title='field form-label is-light is-expanded'
label-title='Title*'
2019-05-14 15:32:42 +00:00
class-description='field form-label is-light is-expanded'
label-description='Description*'
2020-06-18 18:02:54 +00:00
widget-description='solid-form-textarea'
2020-04-08 10:57:05 +00:00
class-skills='form-label is-dark select-skills'
label-skills='The required skills for this mission:*'
2020-06-18 18:02:54 +00:00
multiple-skills='solid-multiple-select'
widget-skills='solid-form-auto-completion'
class-closingDate='form-label is-dark'
label-closingDate='Publication end date:*'
2020-06-18 18:02:54 +00:00
widget-closingDate='solid-form-date'
2019-05-14 15:32:42 +00:00
2019-06-07 09:01:34 +00:00
next='job-offers'
2019-05-14 15:32:42 +00:00
)