feature: members' name of a project now displayed
This commit is contained in:
parent
65c6b77fbc
commit
7fae8e6387
@ -7,6 +7,7 @@ sib-router(default-route='project-profile', hidden)
|
|||||||
include templates/hd-captain.pug
|
include templates/hd-captain.pug
|
||||||
include templates/hd-circle-team.pug
|
include templates/hd-circle-team.pug
|
||||||
include templates/hd-customer.pug
|
include templates/hd-customer.pug
|
||||||
|
include templates/hd-project-team.pug
|
||||||
|
|
||||||
.content-box__info
|
.content-box__info
|
||||||
|
|
||||||
@ -65,10 +66,10 @@ sib-router(default-route='project-profile', hidden)
|
|||||||
|
|
||||||
sib-display(
|
sib-display(
|
||||||
bind-resources
|
bind-resources
|
||||||
fields='team'
|
fields='members'
|
||||||
|
|
||||||
widget-team='circle-team-template'
|
widget-members='hd-project-team'
|
||||||
multiple-team
|
multiple-members
|
||||||
)
|
)
|
||||||
|
|
||||||
sib-widget(name='project-leave-button')
|
sib-widget(name='project-leave-button')
|
||||||
|
@ -67,6 +67,7 @@
|
|||||||
|
|
||||||
.tag-group {
|
.tag-group {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
margin-bottom: 1px;
|
||||||
margin-left: 0.6rem;
|
margin-left: 0.6rem;
|
||||||
|
|
||||||
[name='user.groups'] {
|
[name='user.groups'] {
|
||||||
|
@ -50,7 +50,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
hd-captain>sib-display>div,
|
hd-captain>sib-display>div,
|
||||||
circle-team-template>sib-display>div { /* Maybe move it in main.scss. /!\ some fields are different */
|
hd-project-team>sib-display>div { /* Maybe move it in main.scss. /!\ some fields are different */
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-column-gap: 1.6rem;
|
grid-column-gap: 1.6rem;
|
||||||
grid-template-columns: 7vh auto;
|
grid-template-columns: 7vh auto;
|
||||||
@ -93,7 +93,7 @@
|
|||||||
grid-row: 1 / span 1;
|
grid-row: 1 / span 1;
|
||||||
margin-bottom: 0.50rem;
|
margin-bottom: 0.50rem;
|
||||||
|
|
||||||
[name='name'] {
|
.user-name {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -101,8 +101,9 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
|
|
||||||
[name='groups'] {
|
[name='groups'],
|
||||||
@extend %user-role;
|
[name='user.groups'] {
|
||||||
|
@extend %tag-role;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -117,6 +118,27 @@
|
|||||||
@include mdi('atom');
|
@include mdi('atom');
|
||||||
align-items: center;
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
margin-right: 1.6rem;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
color: $color-43-100-50;
|
||||||
|
margin-right: 0.50rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
>[name$='name']:not(:empty),
|
||||||
|
>[name='is_lead'] {
|
||||||
|
@include icon('eyeglass');
|
||||||
|
align-items: center;
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
color: $color-43-100-50;
|
||||||
|
font-size: 1.9rem;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-left: 0;
|
||||||
|
margin-right: 0.50rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,8 +4,14 @@ sib-widget(name='hd-captain')
|
|||||||
template
|
template
|
||||||
sib-display(
|
sib-display(
|
||||||
data-src="${await value}"
|
data-src="${await value}"
|
||||||
fields='account.picture, sup(name), sub(profile.city)'
|
fields='account.picture, sup(name), sub(profile.city, is_lead)'
|
||||||
|
|
||||||
|
class-name='user-name'
|
||||||
|
class-profile.city='city'
|
||||||
|
|
||||||
widget-account.picture='hd-user-avatar'
|
widget-account.picture='hd-user-avatar'
|
||||||
|
widget-is_lead='hd-user-lead'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
sib-widget(name='hd-user-lead')
|
||||||
|
template Project lead
|
||||||
|
20
src/templates/hd-project-team.pug
Normal file
20
src/templates/hd-project-team.pug
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
include hd-user-avatar.pug
|
||||||
|
|
||||||
|
sib-widget(name='hd-project-team')
|
||||||
|
template
|
||||||
|
sib-display(
|
||||||
|
data-src='${await value}'
|
||||||
|
fields='account.picture, sup(user.name, user.groups), sub(user.profile.city, name)'
|
||||||
|
|
||||||
|
class-user.name='user-name'
|
||||||
|
class-user.groups='tag-group'
|
||||||
|
class-user.profile.city='city'
|
||||||
|
|
||||||
|
widget-account.picture='hd-user-avatar'
|
||||||
|
widget-user.groups='hd-user-groups'
|
||||||
|
|
||||||
|
multiple-user.groups=''
|
||||||
|
)
|
||||||
|
|
||||||
|
sib-widget(name='hd-user-groups')
|
||||||
|
template ${await value.name}
|
Loading…
Reference in New Issue
Block a user