2014-02-12 05:23:40 -05:00
|
|
|
extends ../layout
|
|
|
|
|
2018-09-19 16:37:57 -04:00
|
|
|
block vars
|
|
|
|
- var suppressNavContentLinks = true
|
|
|
|
|
2021-03-22 05:51:07 -04: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 05:38:07 -04:00
|
|
|
meta(name="ol-userHasNoSubscription" data-type="boolean" content=!!(settings.enableSubscriptions && !hasSubscription))
|
2021-03-22 05:51:07 -04:00
|
|
|
meta(name="ol-allInReconfirmNotificationPeriods" data-type="json" content=allInReconfirmNotificationPeriods)
|
|
|
|
meta(name="ol-reconfirmedViaSAML" content=reconfirmedViaSAML)
|
|
|
|
meta(name="ol-algolia" data-type="json" content={
|
2014-06-17 11:19:40 -04:00
|
|
|
institutions: {
|
2021-03-22 05:51:07 -04:00
|
|
|
app_id: algolia_app_id,
|
|
|
|
api_key: algolia_api_key
|
2014-06-17 11:19:40 -04:00
|
|
|
}
|
2021-03-22 05:51:07 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
block content
|
2014-06-04 12:46:22 -04:00
|
|
|
|
2018-04-16 06:43:24 -04:00
|
|
|
main.content.content-alt.project-list-page(
|
|
|
|
ng-controller="ProjectPageController"
|
|
|
|
role="main"
|
|
|
|
)
|
2020-02-26 06:55:28 -05:00
|
|
|
.system-messages(
|
|
|
|
ng-cloak
|
|
|
|
ng-controller="SystemMessagesController"
|
|
|
|
)
|
|
|
|
.system-message(
|
|
|
|
ng-repeat="message in messages"
|
|
|
|
ng-controller="SystemMessageController"
|
|
|
|
ng-hide="hidden"
|
2018-03-28 07:05:32 -04:00
|
|
|
)
|
2020-02-26 06:55:28 -05: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 09:54:01 -05:00
|
|
|
|
2018-03-28 08:54:02 -04:00
|
|
|
include ../translations/translation_message
|
|
|
|
|
2018-04-03 09:48:11 -04: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 09:28:13 -04:00
|
|
|
.project-list-row(ng-cloak)
|
|
|
|
.project-list-container.row(ng-if="projects.length > 0")
|
2018-03-20 08:15:04 -04:00
|
|
|
.project-list-sidebar-wrapper.col-md-2.col-xs-3
|
|
|
|
aside.project-list-sidebar
|
|
|
|
include ./list/side-bar
|
2017-12-04 09:53:18 -05:00
|
|
|
|
2017-10-05 13:16:52 -04:00
|
|
|
.project-list-main.col-md-10.col-xs-9
|
|
|
|
include ./list/notifications
|
|
|
|
include ./list/project-list
|
2020-01-16 09:54:01 -05:00
|
|
|
|
2019-05-21 09:28:13 -04:00
|
|
|
.project-list-empty.row(ng-if="projects.length === 0")
|
2019-10-21 12:02:01 -04: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 13:16:52 -04:00
|
|
|
include ./list/empty-project-list
|
2019-10-21 12:02:01 -04:00
|
|
|
.row.row-spaced
|
|
|
|
.col-sm-12
|
|
|
|
include ./list/notifications
|
2014-07-07 09:58:12 -04:00
|
|
|
|
2017-01-25 04:14:21 -05:00
|
|
|
include ./list/modals
|