2021-01-22 13:34:07 +00:00
|
|
|
.scrollbar-content.views-container.sidebar-is-closed.bg-color-white
|
2020-12-11 17:13:03 +00:00
|
|
|
solid-ac-checker(permission='acl:Read', bind-resources)
|
2021-02-22 20:27:58 +00:00
|
|
|
div(
|
|
|
|
id=`${component.route}-chat`
|
|
|
|
hidden
|
|
|
|
data-view=`${component.route}-chat`
|
|
|
|
no-render
|
|
|
|
)
|
2020-12-14 13:43:48 +00:00
|
|
|
include partials/project/page-project-chat.pug
|
2021-02-22 20:27:58 +00:00
|
|
|
div(
|
|
|
|
id=`${component.route}-information`
|
|
|
|
hidden
|
|
|
|
data-view=`${component.route}-information`
|
|
|
|
no-render
|
|
|
|
)
|
2020-12-14 13:43:48 +00:00
|
|
|
include partials/project/page-project-profile.pug
|
2021-02-22 20:27:58 +00:00
|
|
|
div(
|
|
|
|
id=`${component.route}-picture`
|
|
|
|
hidden
|
|
|
|
data-view=`${component.route}-picture`
|
|
|
|
no-render
|
|
|
|
)
|
2020-12-14 13:43:48 +00:00
|
|
|
include partials/project/page-project-picture.pug
|
2021-04-15 13:57:17 +00:00
|
|
|
if component.extensions
|
|
|
|
for extension of component.extensions
|
|
|
|
if extension.type == 'invoices'
|
|
|
|
div(
|
|
|
|
id=`${extension.route}-invoices`
|
|
|
|
hidden
|
|
|
|
data-view=`${extension.route}-invoices`
|
|
|
|
no-render
|
|
|
|
)
|
|
|
|
include partials/project/page-project-invoices.pug
|
2019-12-18 18:50:47 +00:00
|
|
|
|
2021-04-15 11:13:48 +00:00
|
|
|
nav.jsRightMenu.segment.sm-hidden.text-disable-selection.sidebar.whitespace-normal(role='navigation')
|
2021-02-22 20:27:58 +00:00
|
|
|
solid-router.segment.whitespace-normal.text-color-heading.text-bold(default-route=`${component.route}-chat`)
|
2019-01-25 14:47:14 +00:00
|
|
|
ul
|
2021-04-13 10:26:35 +00:00
|
|
|
li.segment.full.sm-hidden.padding-small.text-normal.jsOffsiteToggle
|
2021-01-22 13:50:03 +00:00
|
|
|
span.icon.icon-arrow-left.icon-xsmall.margin-left-xxsmall.text-left
|
2021-01-23 14:42:09 +00:00
|
|
|
span.segment.full.text-right(hidden)
|
2021-01-22 13:50:03 +00:00
|
|
|
span.icon.icon-arrow-right.icon-xsmall.margin-right-xxsmall
|
|
|
|
a(data-trans='project.menuRight.fold')
|
2021-02-22 20:27:58 +00:00
|
|
|
solid-route.segment.full(name=`${component.route}-chat` use-id)
|
2021-01-22 13:29:45 +00:00
|
|
|
li.segment.full.padding-medium
|
2021-01-08 22:44:44 +00:00
|
|
|
span.icon.ci-chat.icon-xlarge.margin-right-medium
|
2020-10-21 15:10:33 +00:00
|
|
|
a(data-trans='project.menuRight.chat')
|
2021-02-22 20:27:58 +00:00
|
|
|
solid-route.segment.full(name=`${component.route}-information` use-id)
|
2021-01-22 13:29:45 +00:00
|
|
|
li.segment.full.padding-medium
|
2021-01-08 22:44:44 +00:00
|
|
|
span.icon.ci-information.icon-xlarge.margin-right-medium
|
2020-10-21 15:10:33 +00:00
|
|
|
a(data-trans='project.menuRight.information')
|
2021-02-22 20:27:58 +00:00
|
|
|
solid-route(name=`${component.route}-picture` use-id)
|
2021-04-15 13:57:17 +00:00
|
|
|
if component.extensions
|
|
|
|
for extension of component.extensions
|
|
|
|
if extension.type == 'invoices'
|
|
|
|
solid-route.segment.full(name=`${extension.route}-invoices` use-id)
|
|
|
|
li.segment.full.padding-medium
|
|
|
|
span.icon.ci-list.icon-xlarge.margin-right-medium
|
|
|
|
a(data-trans='circle.menuRight.invoices')
|