mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
2dd860c431
Consolidate emails requests on the dashboard GitOrigin-RevId: acfaf92dee257712e1eb3ffbf75b536fd1619e1d
59 lines
1.9 KiB
Text
59 lines
1.9 KiB
Text
extends ../layout
|
|
|
|
block vars
|
|
- var suppressNavContentLinks = true
|
|
|
|
block content
|
|
script#data(type="application/json").
|
|
!{StringHelper.stringifyJsonForScript({ projects, tags, notifications, notificationsInstitution, userAffiliations, userEmails })}
|
|
|
|
script(type="text/javascript").
|
|
window.data = JSON.parse(document.querySelector("#data").text);
|
|
window.algolia = {
|
|
institutions: {
|
|
app_id: '#{algolia_app_id}',
|
|
api_key: '#{algolia_api_key}'
|
|
}
|
|
};
|
|
|
|
main.content.content-alt.project-list-page(
|
|
ng-controller="ProjectPageController"
|
|
role="main"
|
|
)
|
|
.system-messages(
|
|
ng-cloak
|
|
ng-controller="SystemMessagesController"
|
|
)
|
|
.system-message(
|
|
ng-repeat="message in messages"
|
|
ng-controller="SystemMessageController"
|
|
ng-hide="hidden"
|
|
)
|
|
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")
|
|
|
|
include ../translations/translation_message
|
|
|
|
.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}")
|
|
.project-list-row(ng-cloak)
|
|
.project-list-container.row(ng-if="projects.length > 0")
|
|
.project-list-sidebar-wrapper.col-md-2.col-xs-3
|
|
aside.project-list-sidebar
|
|
include ./list/side-bar
|
|
|
|
.project-list-main.col-md-10.col-xs-9
|
|
include ./list/notifications
|
|
include ./list/project-list
|
|
|
|
.project-list-empty.row(ng-if="projects.length === 0")
|
|
.project-list-empty-col.col-md-offset-2.col-md-8.col-md-offset-2.col-xs-8.col-xs-offset-2
|
|
include ./list/empty-project-list
|
|
.row.row-spaced
|
|
.col-sm-12
|
|
include ./list/notifications
|
|
|
|
include ./list/modals
|
|
|
|
//- include ./list/front-chat
|