2014-02-12 10:23:40 +00:00
|
|
|
extends ../layout
|
|
|
|
|
2018-09-19 20:37:57 +00:00
|
|
|
block vars
|
|
|
|
- var suppressNavContentLinks = true
|
|
|
|
|
2021-03-22 09:51:07 +00:00
|
|
|
block append meta
|
|
|
|
meta(name="ol-projects" data-type="json" content=projects)
|
|
|
|
meta(name="ol-tags" data-type="json" content=tags)
|
|
|
|
meta(name="ol-notifications" data-type="json" content=notifications)
|
|
|
|
meta(name="ol-notificationsInstitution" data-type="json" content=notificationsInstitution)
|
|
|
|
meta(name="ol-userAffiliations" data-type="json" content=userAffiliations)
|
|
|
|
meta(name="ol-userEmails" data-type="json" content=userEmails)
|
2021-03-31 09:38:07 +00:00
|
|
|
meta(name="ol-userHasNoSubscription" data-type="boolean" content=!!(settings.enableSubscriptions && !hasSubscription))
|
2021-03-22 09:51:07 +00:00
|
|
|
meta(name="ol-allInReconfirmNotificationPeriods" data-type="json" content=allInReconfirmNotificationPeriods)
|
|
|
|
meta(name="ol-reconfirmedViaSAML" content=reconfirmedViaSAML)
|
|
|
|
|
|
|
|
block content
|
2014-06-04 16:46:22 +00:00
|
|
|
|
2018-04-16 10:43:24 +00:00
|
|
|
main.content.content-alt.project-list-page(
|
|
|
|
ng-controller="ProjectPageController"
|
|
|
|
role="main"
|
|
|
|
)
|
2020-02-26 11:55:28 +00:00
|
|
|
.system-messages(
|
|
|
|
ng-cloak
|
|
|
|
ng-controller="SystemMessagesController"
|
|
|
|
)
|
|
|
|
.system-message(
|
|
|
|
ng-repeat="message in messages"
|
|
|
|
ng-controller="SystemMessageController"
|
|
|
|
ng-hide="hidden"
|
2018-03-28 11:05:32 +00:00
|
|
|
)
|
2020-02-26 11:55:28 +00:00
|
|
|
button(ng-hide="protected",ng-click="hide()").close.pull-right
|
|
|
|
span(aria-hidden="true") ×
|
|
|
|
span.sr-only #{translate("close")}
|
|
|
|
.system-message-content(ng-bind-html="htmlContent")
|
2020-01-16 14:54:01 +00:00
|
|
|
|
2018-03-28 12:54:02 +00:00
|
|
|
include ../translations/translation_message
|
|
|
|
|
2018-04-03 13:48:11 +00:00
|
|
|
.project-list-content(event-tracking=settings.overleaf ? "loads_v2_dash" : "", onboard=settings.overleaf ? "true" : "", event-tracking-trigger=settings.overleaf ? "load" : "", event-tracking-mb="true", event-segmentation="{location: 'dash', v2_onboard: true}")
|
2019-05-21 13:28:13 +00:00
|
|
|
.project-list-row(ng-cloak)
|
|
|
|
.project-list-container.row(ng-if="projects.length > 0")
|
2018-03-20 12:15:04 +00:00
|
|
|
.project-list-sidebar-wrapper.col-md-2.col-xs-3
|
|
|
|
aside.project-list-sidebar
|
|
|
|
include ./list/side-bar
|
2017-12-04 14:53:18 +00:00
|
|
|
|
2017-10-05 17:16:52 +00:00
|
|
|
.project-list-main.col-md-10.col-xs-9
|
|
|
|
include ./list/notifications
|
|
|
|
include ./list/project-list
|
2020-01-16 14:54:01 +00:00
|
|
|
|
2019-05-21 13:28:13 +00:00
|
|
|
.project-list-empty.row(ng-if="projects.length === 0")
|
2019-10-21 16:02:01 +00:00
|
|
|
.project-list-empty-col.col-md-offset-2.col-md-8.col-md-offset-2.col-xs-8.col-xs-offset-2
|
2017-10-05 17:16:52 +00:00
|
|
|
include ./list/empty-project-list
|
2019-10-21 16:02:01 +00:00
|
|
|
.row.row-spaced
|
|
|
|
.col-sm-12
|
|
|
|
include ./list/notifications
|
2014-07-07 13:58:12 +00:00
|
|
|
|
2017-01-25 09:14:21 +00:00
|
|
|
include ./list/modals
|