hubl/src/page-circle-edit.pug

79 lines
1.8 KiB
Plaintext

div.content-box__info
include templates/hd-user-avatar.pug
sib-widget(name='hd-user-groups')
template ${value.name}
sib-widget(name='team-template-edit')
template
sib-display(
class='cell'
data-src='${await value.user}'
fields='account.picture, sup(name, groups), sub(profile.city)'
widget-account.picture='hd-user-avatar'
multiple-groups=''
widget-groups='hd-user-groups'
)
sib-ac-checker(
class='cell'
permission="acl:Delete"
data-src="${value['@id']}"
)
sib-delete(
class='button text-bold text-uppercase reversed button-dark bordered with-icon icon-close'
data-src="${value['@id']}"
data-label='Leave the circle'
)
//- Only to show the table grid
sib-ac-checker(
class='cell'
no-permission="acl:Delete"
data-src="${value['@id']}"
)
sib-link(class="backlink", bind-resources, next='circle-profile') Back
h1 Edit your circle
sib-form.block.circle-edit-form(
bind-resources
fields='block-circle__info(name, owner), description'
range-owner=`${endpoints.users}`
label-owner='owner'
class-name='form-label is-light is-half-width'
class-owner='form-label is-light is-half-width member-select color'
class-description='form-label is-light is-full-width'
widget-owner='sib-form-auto-completion'
widget-description='sib-form-textarea'
partial=''
submit-button='Save'
)
h2 Members list
div.table.cols-2.table-no-border-bottom
div.table-header Name
div.table-header Access
//-class='table-body'
sib-display(
class='table cols-2'
bind-resources
fields='members'
multiple-members=''
widget-members='team-template-edit'
)