2014-02-12 10:23:40 +00:00
|
|
|
extends ../layout
|
|
|
|
|
2018-09-19 20:37:57 +00:00
|
|
|
block vars
|
|
|
|
- var suppressNavContentLinks = true
|
|
|
|
|
2014-07-08 11:01:32 +00:00
|
|
|
block content
|
2017-04-04 09:46:46 +00:00
|
|
|
script#data(type="application/json").
|
2021-02-02 14:26:10 +00:00
|
|
|
!{StringHelper.stringifyJsonForScript({ projects, tags, notifications, notificationsInstitution, userAffiliations, userEmails })}
|
2017-11-27 12:06:18 +00:00
|
|
|
|
2014-06-11 13:52:23 +00:00
|
|
|
script(type="text/javascript").
|
2019-12-16 15:02:29 +00:00
|
|
|
window.data = JSON.parse(document.querySelector("#data").text);
|
2014-06-17 15:19:40 +00:00
|
|
|
window.algolia = {
|
|
|
|
institutions: {
|
|
|
|
app_id: '#{algolia_app_id}',
|
|
|
|
api_key: '#{algolia_api_key}'
|
|
|
|
}
|
|
|
|
};
|
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
|
2018-02-19 16:34:24 +00:00
|
|
|
|
2018-09-19 14:23:54 +00:00
|
|
|
//- include ./list/front-chat
|