hubl/src/views/partials/admin/page-admin-projects-create.pug

46 lines
1.3 KiB
Plaintext
Raw Normal View History

div.content-box__info.flex
2020-10-21 13:31:05 +00:00
solid-link(class="backlink right" next='admin-project-list' data-trans='project.create.backlink')
2020-10-21 13:31:05 +00:00
h1.centered(data-trans='project.create.title')
div#loader-projects-create.loader.loader-top
div
div
div
div
2020-06-18 18:02:54 +00:00
solid-form.form.button-register(
data-src=`${endpoints.projects || endpoints.post.projects}`
2020-09-03 13:40:10 +00:00
fields='status, line-1(customer.name, name), line-2(captain)'
2020-09-24 10:56:19 +00:00
required-status
required-customer.name
required-name
required-captain
loader-id='loader-projects-create'
2020-10-21 13:31:05 +00:00
label-status=''
2020-09-01 10:59:39 +00:00
widget-status='solid-form-hidden'
class-status='form-label is-light is-full-width'
2020-09-01 10:59:39 +00:00
value-status="Private"
2020-10-21 13:31:05 +00:00
label-customer.name=''
class-customer.name='form-label is-light is-half-width input-text-like'
2020-10-21 13:31:05 +00:00
label-name=''
class-name='form-label is-light is-half-width input-text-like'
2020-10-21 13:31:05 +00:00
label-captain=''
range-captain=`${endpoints.users || endpoints.get.users}`
class-captain='form-label is-light is-half-width'
2020-09-14 13:41:10 +00:00
widget-captain='solid-form-dropdown-autocompletion-label'
2020-06-16 10:38:09 +00:00
class='input-text-like'
2020-09-03 10:15:47 +00:00
next='project'
2020-10-21 13:31:05 +00:00
submit-button=''
2020-10-22 11:19:20 +00:00
data-trans='label-status=project.create.labelStatus;label-customer.name=project.create.labelCustomer;label-name=project.create.labelName;label-captain=project.create.labelCaptain;submit-button=project.create.buttonSubmit'
)