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

60 lines
3.2 KiB
Plaintext
Raw Normal View History

div.segment.full.padding-large.sm-padding-top-small.sm-padding-right-xsmall.sm-padding-bottom-small.sm-padding-left-xsmall.border-bottom.border-color-grey
div.segment.full.sm-three-quarter
h2.margin-none.text-color-heading.text-uppercase.text-xlarge.text-letter-spacing-large(data-trans='circle.create.title')
div.segment.half.sm-hidden.text-right
solid-link(class="backlink", next=`admin-${getRoute('circles', true)}` data-trans='circle.create.backlink')
div.segment.lg-hidden.sm-quarter.text-right
div.jsMobileRightMenuButton.icon.icon-options-vertical.icon-heading
div.segment.full.padding-large.sm-padding-xsmall.sm-padding-top-medium.whitespace-normal
div.loader.loader-top(id=`loader-admin-${getComponent('circles').uniq}`)
div
div
div
div
2021-01-10 22:15:35 +00:00
solid-form.form(
data-src=`${getComponent('circles').endpoints.post}`
2019-11-14 12:27:04 +00:00
2021-04-16 15:23:00 +00:00
fields='status, community.community, name, subtitle, description, help'
2020-09-24 10:56:19 +00:00
required-status
2021-04-16 15:23:00 +00:00
required-community.community
2020-09-24 10:56:19 +00:00
required-name
required-subtitle
loader-id=`loader-admin-${getComponent('circles').uniq}`
2020-05-19 16:22:00 +00:00
class-status='segment margin-bottom-medium half sm-full padding-right-small sm-padding-none text-small text-semibold text-uppercase text-color-heading whitespace-normal'
2021-04-16 15:23:00 +00:00
class-community.community='segment margin-bottom-medium half sm-full padding-left-small sm-padding-none text-small text-semibold text-uppercase text-color-heading whitespace-normal'
class-name='segment margin-bottom-medium half sm-full padding-right-small sm-padding-none text-small text-semibold text-uppercase text-color-heading'
class-subtitle='segment margin-bottom-medium half sm-full padding-left-small sm-padding-none text-small text-semibold text-uppercase text-color-heading'
class-description='segment margin-bottom-xxsmall full text-small text-semibold text-uppercase text-color-heading'
class-help='segment full text-small margin-bottom-medium padding-left-small'
2020-10-21 13:31:05 +00:00
label-status=''
2021-04-16 15:23:00 +00:00
label-community.community=''
2020-10-21 13:31:05 +00:00
label-name=''
label-subtitle=''
2020-10-21 13:31:05 +00:00
label-description=''
label-help=''
2020-04-21 09:27:31 +00:00
2021-04-16 15:23:00 +00:00
range-community.community='store://user.communities'
option-label-community.community="community.name"
option-value-community.community="community"
2021-03-29 15:08:50 +00:00
2021-04-08 10:51:16 +00:00
widget-status='solid-form-dropdown-autocompletion-label'
enum-status=""
2021-04-16 15:23:00 +00:00
widget-community.community='solid-form-dropdown-autocompletion-label'
2021-01-10 22:15:35 +00:00
widget-linebreak='solid-form-hidden'
widget-description='solid-form-richtext-label'
widget-help='solid-form-hidden-label'
next=getRoute('circles', true)
2019-11-14 12:27:04 +00:00
2020-10-21 13:31:05 +00:00
submit-button=''
2021-03-16 14:27:30 +00:00
submit-widget="button"
class-submit-button="submit-button segment sm-full margin-top-xsmall text-xsmall children-link-button children-link-text-bold children-link-text-uppercase children-link-reversed color-secondary bordered children-button-icon children-icon-rocket children-icon-small children-icon-margin-right-xsmall"
2021-06-15 11:48:49 +00:00
data-trans='enum-status=orbitStatus;label-status=circle.create.labelStatus;label-community.community=circle.create.labelCommunity;label-name=circle.create.labelName;label-description=circle.create.labelDescription;submit-button=circle.create.buttonSubmit;label-subtitle=circle.create.labelSubtitle;label-help=circle.create.descriptionHelp'
)