hubl/src/page-circle-edit.pug

70 lines
1.5 KiB
Plaintext
Raw Normal View History

2019-10-24 09:21:35 +00:00
#circle-edit.content-box.with-padding.with-form
2019-10-21 13:38:49 +00:00
include templates/hd-user-avatar.pug
sib-widget(name='hd-user-groups')
template ${await value.name}
2019-10-21 13:38:49 +00:00
2019-10-24 19:44:35 +00:00
sib-widget(name='team-template-edit')
template
2019-10-21 13:38:49 +00:00
sib-display(
data-src='${await value.user}'
2019-10-21 13:38:49 +00:00
fields='account.picture, sup(name, groups), sub(profile.city)'
widget-account.picture='hd-user-avatar'
multiple-groups=''
widget-groups='hd-user-groups'
2019-10-21 13:38:49 +00:00
)
2019-10-24 19:23:11 +00:00
sib-ac-checker(
permission="acl:Delete"
data-src="${await value['@id']}"
)
sib-delete(
data-src="${await value['@id']}"
data-label='Leave the circle'
)
//- Only to show the table grid
sib-ac-checker(
no-permission="acl:Delete"
data-src="${await value['@id']}"
)
h1 Edit your circle
sib-form.block(
bind-resources
2019-10-15 10:14:54 +00:00
2019-10-21 09:37:07 +00:00
fields='block-circle__info(name, owner), description'
range-owner=`${endpoints.users}`
2019-10-21 09:37:07 +00:00
label-owner='owner'
class-name='form-label is-light is-half-width'
2019-10-23 07:57:34 +00:00
class-owner='form-label is-light is-half-width member-select color'
class-description='form-label is-light is-full-width'
2019-10-21 09:37:07 +00:00
widget-owner='sib-form-auto-completion'
widget-description='sib-form-textarea'
2019-10-24 19:23:11 +00:00
partial=''
submit-button='Save'
)
2019-10-24 19:23:11 +00:00
h2 Members list
2019-10-21 13:02:12 +00:00
div.table-header
div.cell Name
div.cell Access
2019-10-17 14:06:22 +00:00
2019-10-21 13:02:12 +00:00
sib-display.table-body(
bind-resources
fields='members'
2019-10-21 13:02:12 +00:00
multiple-members=''
2019-10-24 19:44:35 +00:00
widget-members='team-template-edit'
)