overleaf/services/web/app/views/project/list.pug
Simon Detheridge 3e8aeda5d3 Merge pull request #2497 from overleaf/pr-add-dropbox-survey-link
Add dropbox survey link.

GitOrigin-RevId: cfb23c88a38833ff56170c35fea1c78b1172edd3
2020-01-17 04:20:12 +00:00

85 lines
2.6 KiB
Text

extends ../layout
block vars
- var suppressNavContentLinks = true
block content
script#data(type="application/json").
!{StringHelper.stringifyJsonForScript({ projects, tags, notifications, notificationsInstitution })}
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"
)
- if(typeof(suppressSystemMessages) == "undefined")
script.
window.systemMessages = !{StringHelper.stringifyJsonForScript(systemMessages)};
.system-messages(
ng-cloak
ng-controller="SystemMessagesController"
)
.system-message(
ng-repeat="message in messages"
ng-controller="SystemMessageController"
ng-hide="hidden"
)
button(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-sidebar-survey(
ng-if="shouldShowSurveyLink"
ng-cloak
)
| What would you like to see next in Overleaf?
|
|
a.project-list-sidebar-survey-link(
href="https://forms.gle/om5t48UUj7LecHMP8"
target="_blank"
rel="noreferrer noopener"
) Take our short survey
| .
button.project-list-sidebar-survey-dismiss(
type="button"
title="Dismiss Overleaf survey"
ng-click="dismissSurvey()"
)
span(
aria-hidden="true"
) ×
.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