Skip to content
Snippets Groups Projects
page-admin-circles-create.pug 1.48 KiB
div.segment.lg-full.padding-large.border-bottom.border-color-grey
  div.segment.lg-half
    h2.text-uppercase.text-xlarge.text-letter-spacing-large(data-trans='circle.create.title')
  div.segment.lg-half.text-right
    solid-link(class="backlink", next='admin-circle-list' data-trans='circle.create.backlink')

div.segment.lg-full.padding-large.whitespace-normal
  div#loader-circles-create.loader.loader-top
    div
    div
    div
    div

  solid-form.form(
    data-src=`${endpoints.circles || endpoints.post.circles}`

    fields='status, linebreak, name, description'
    required-status
    required-name
    required-description
    loader-id='loader-circles-create'

    class-status='segment margin-bottom-medium lg-half padding-right-small text-small text-semibold text-uppercase text-color-heading whitespace-normal'
    class-linebreak='segment lg-half'
    class-name='segment margin-bottom-medium lg-half padding-right-small text-small text-semibold text-uppercase text-color-heading'
    class-description='segment margin-bottom-medium lg-half padding-left-small text-small text-semibold text-uppercase text-color-heading'

    label-status=''
    label-name=''
    label-description=''

    widget-status='hubl-status'
    widget-linebreak='solid-form-hidden'
    
    next='circle'

    submit-button=''
    
    data-trans='label-status=circle.create.labelStatus;label-name=circle.create.labelName;label-description=circle.create.labelDescription;submit-button=circle.create.buttonSubmit'
  )