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

45 lines
2.1 KiB
Plaintext
Raw Normal View History

2021-01-19 18:59:24 +00:00
div.segment.lg-full.sm-full.padding-large.sm-padding-top-small.sm-padding-right-xsmall.sm-padding-bottom-small.sm-padding-left-xsmall.border-bottom.border-color-grey
h2.text-uppercase.text-xlarge.text-letter-spacing-large(data-trans='project.create.title')
2021-01-19 18:59:24 +00:00
div.segment.lg-full.sm-full.padding-large.sm-padding-xsmall.sm-padding-top-medium.whitespace-normal
div#loader-projects-create.loader.loader-top
div
div
div
div
2021-01-19 18:59:24 +00:00
solid-form.form(
data-src=`${endpoints.projects || endpoints.post.projects}`
2021-01-08 14:39:37 +00:00
fields='status, customer.name, name, description, captain, linebreak'
range-captain=`${endpoints.users || endpoints.get.users}`
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=''
2021-01-08 14:39:37 +00:00
label-customer.name=''
label-name=''
label-description='Description'
2020-10-21 13:31:05 +00:00
label-captain=''
2021-01-08 14:39:37 +00:00
2021-01-19 18:59:24 +00:00
class-customer.name='segment margin-bottom-medium lg-half sm-full padding-right-small sm-padding-none text-small text-semibold text-uppercase text-color-heading'
class-name='segment margin-bottom-medium lg-half sm-full padding-left-small sm-padding-none text-small text-semibold text-uppercase text-color-heading'
class-description='segment margin-bottom-medium lg-full sm-full text-small text-semibold text-uppercase text-color-heading'
class-captain='segment margin-bottom-medium lg-half sm-full padding-right-small sm-padding-none text-small text-semibold text-uppercase text-color-heading whitespace-normal'
class-linebreak='segment lg-full sm-hidden'
2021-01-08 14:39:37 +00:00
widget-status='solid-form-hidden'
value-status='Private'
widget-description='solid-form-textarea-label'
2020-09-14 13:41:10 +00:00
widget-captain='solid-form-dropdown-autocompletion-label'
2021-01-08 14:39:37 +00:00
widget-linebreak='solid-form-hidden'
2020-10-21 13:31:05 +00:00
submit-button=''
2021-01-08 14:39:37 +00:00
next='project'
2021-01-08 14:39:37 +00:00
data-trans='label-status=project.create.labelStatus;label-customer.name=project.create.labelCustomer;label-name=project.create.labelName;label-description=project.create.labelDescription;label-captain=project.create.labelCaptain;submit-button=project.create.buttonSubmit'
)