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

48 lines
2.0 KiB
Plaintext
Raw Normal View History

2021-01-08 14:39:37 +00:00
div.segment.lg-full.padding-large.border-bottom.border-color-grey
div.segment.lg-half
2020-11-25 15:25:27 +00:00
h2.text-uppercase.text-xlarge.text-letter-spacing-large(data-trans='project.create.title')
2021-01-08 14:39:37 +00:00
div.segment.lg-half.text-right
2020-11-25 15:25:27 +00:00
solid-link(class="backlink", next='admin-project-list' data-trans='project.create.backlink')
2021-01-08 14:39:37 +00:00
div.segment.lg-full.padding-large
div#loader-projects-create.loader.loader-top
div
div
div
div
2021-01-08 14:39:37 +00:00
solid-form.segment.lg-full.whitespace-normal.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
class-customer.name='segment margin-bottom-medium lg-half padding-right-small text-small text-semibold text-uppercase text-color-heading'
class-name='segment margin-bottom-medium lg-half padding-left-small text-small text-semibold text-uppercase text-color-heading'
class-description='segment margin-bottom-medium lg-full text-small text-semibold text-uppercase text-color-heading'
class-captain='segment margin-bottom-medium lg-half padding-right-small text-small text-semibold text-uppercase text-color-heading whitespace-normal'
class-linebreak='segment lg-full'
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'
)