2019-10-21 12:02:01 -04:00
|
|
|
.user-notifications(ng-controller="NotificationsController")
|
|
|
|
ul.list-unstyled(
|
2019-10-29 11:41:13 -04:00
|
|
|
ng-if="notifications.length > 0 && projects.length > 0",
|
2016-02-04 09:28:31 -05:00
|
|
|
ng-cloak
|
|
|
|
)
|
2019-10-21 12:02:01 -04:00
|
|
|
li.notification-entry(
|
2019-10-29 11:41:13 -04:00
|
|
|
ng-repeat="notification in notifications"
|
2016-02-04 09:28:31 -05:00
|
|
|
)
|
2019-10-21 12:02:01 -04:00
|
|
|
div(ng-switch="notification.templateKey" ng-hide="notification.hide")
|
2019-10-29 11:41:13 -04:00
|
|
|
.alert.alert-info(
|
|
|
|
ng-switch-when="notification_project_invite",
|
|
|
|
ng-controller="ProjectInviteNotificationController"
|
|
|
|
)
|
|
|
|
.notification-body
|
|
|
|
span(ng-show="!notification.accepted") !{translate("notification_project_invite_message", { userName: "{{ userName }}", projectName: "{{ projectName }}" })}
|
|
|
|
span(ng-show="notification.accepted") !{translate("notification_project_invite_accepted_message", { projectName: "{{ projectName }}" })}
|
|
|
|
.notification-action
|
|
|
|
a.pull-right.btn.btn-sm.btn-info(
|
|
|
|
ng-show="notification.accepted",
|
|
|
|
href="/project/{{ notification.messageOpts.projectId }}"
|
|
|
|
) #{translate("open_project")}
|
|
|
|
a.pull-right.btn.btn-sm.btn-info(
|
|
|
|
href,
|
|
|
|
ng-click="accept()",
|
|
|
|
ng-disabled="notification.inflight",
|
|
|
|
ng-show="!notification.accepted"
|
|
|
|
)
|
2019-10-21 12:02:01 -04:00
|
|
|
span(ng-show="!notification.inflight") #{translate("join_project")}
|
|
|
|
span(ng-show="notification.inflight")
|
|
|
|
i.fa.fa-fw.fa-spinner.fa-spin(aria-hidden="true")
|
|
|
|
|
|
|
|
|
| #{translate("joining")}...
|
|
|
|
.notification-close
|
|
|
|
button(ng-click="dismiss(notification)").close.pull-right
|
|
|
|
span(aria-hidden="true") ×
|
|
|
|
span.sr-only #{translate("close")}
|
2019-10-29 11:41:13 -04:00
|
|
|
|
|
|
|
.alert.alert-info(
|
|
|
|
ng-switch-when="notification_ip_matched_affiliation"
|
|
|
|
)
|
2019-10-21 12:02:01 -04:00
|
|
|
.notification-body
|
2020-03-03 11:36:39 -05:00
|
|
|
| It looks like you're at
|
2019-10-21 12:02:01 -04:00
|
|
|
strong {{ notification.messageOpts.university_name }}! <br/>
|
|
|
|
| Did you know that {{notification.messageOpts.university_name}} is providing
|
2020-03-03 11:36:39 -05:00
|
|
|
strong free Overleaf Professional accounts
|
2019-10-21 12:02:01 -04:00
|
|
|
| to everyone at {{notification.messageOpts.university_name}}? <br/>
|
|
|
|
| Add an institutional email address to claim your account.
|
2019-10-29 11:41:13 -04:00
|
|
|
.notification-action
|
2019-10-21 12:02:01 -04:00
|
|
|
a.pull-right.btn.btn-sm.btn-info(href="/user/settings")
|
|
|
|
| Add Affiliation
|
|
|
|
.notification-close
|
2019-10-29 11:41:13 -04:00
|
|
|
button.btn-sm(ng-click="dismiss(notification)").close.pull-right
|
2019-10-21 12:02:01 -04:00
|
|
|
span(aria-hidden="true") ×
|
|
|
|
span.sr-only #{translate("close")}
|
2019-10-29 11:41:13 -04:00
|
|
|
|
2020-03-03 11:36:39 -05:00
|
|
|
.alert.alert-danger(
|
|
|
|
ng-switch-when="notification_tpds_file_limit"
|
|
|
|
)
|
|
|
|
.notification-body
|
|
|
|
| Error: Your project
|
|
|
|
strong {{ notification.messageOpts.projectName }}
|
|
|
|
| has gone over the 2000 file limit using an integration (e.g. Dropbox or Github) <br/>
|
|
|
|
| Please decrease the size of your project to prevent further errors.
|
|
|
|
.notification-action
|
|
|
|
a.pull-right.btn.btn-sm.btn-info(href="/user/settings")
|
|
|
|
| Account Settings
|
|
|
|
.notification-close
|
|
|
|
button.btn-sm(ng-click="dismiss(notification)").close.pull-right
|
|
|
|
span(aria-hidden="true") ×
|
|
|
|
span.sr-only #{translate("close")}
|
|
|
|
|
2019-10-29 11:41:13 -04:00
|
|
|
.alert.alert-info(
|
|
|
|
ng-switch-default
|
|
|
|
)
|
2019-10-21 12:02:01 -04:00
|
|
|
span(ng-bind-html="notification.html").notification-body
|
|
|
|
.notification-close
|
|
|
|
button(ng-click="dismiss(notification)").close.pull-right
|
|
|
|
span(aria-hidden="true") ×
|
|
|
|
span.sr-only #{translate("close")}
|
2018-10-11 10:39:54 -04:00
|
|
|
|
2019-10-29 11:41:13 -04:00
|
|
|
ul.list-unstyled(
|
|
|
|
ng-if="notificationsInstitution.length > 0",
|
|
|
|
ng-cloak
|
|
|
|
)
|
|
|
|
li.notification-entry(
|
|
|
|
ng-repeat="notification in notificationsInstitution"
|
|
|
|
)
|
|
|
|
div(ng-switch="notification.templateKey" ng-hide="notification.hide")
|
|
|
|
.alert.alert-info(
|
|
|
|
ng-switch-when="notification_institution_sso_available"
|
|
|
|
)
|
|
|
|
.notification-body
|
|
|
|
p !{translate("can_link_institution_email_acct_to_institution_acct", {appName: settings.appName, email: "{{notification.email}}", institutionName: "{{notification.institutionName}}"})}
|
|
|
|
div !{translate("doing_this_allow_log_in_through_institution", {appName: settings.appName})}
|
|
|
|
.notification-action
|
2019-11-21 10:55:05 -05:00
|
|
|
a.btn.btn-sm.btn-info(href="{{samlInitPath}}?university_id={{notification.institutionId}}&auto=/project&email={{notification.email}}")
|
2019-10-29 11:41:13 -04:00
|
|
|
| #{translate('link_account')}
|
|
|
|
.notification-close
|
|
|
|
button(ng-click="dismiss(notification)").close.pull-right
|
|
|
|
span(aria-hidden="true") ×
|
|
|
|
span.sr-only #{translate("close")}
|
|
|
|
|
|
|
|
.alert.alert-info(
|
|
|
|
ng-switch-when="notification_institution_sso_linked"
|
|
|
|
)
|
|
|
|
.notification-body
|
|
|
|
div !{translate("account_has_been_link_to_institution_account", {appName: settings.appName, email: "{{notification.email}}", institutionName: "{{notification.institutionName}}"})}
|
|
|
|
.notification-close
|
|
|
|
button(ng-click="dismiss(notification)").close.pull-right
|
|
|
|
span(aria-hidden="true") ×
|
|
|
|
span.sr-only #{translate("close")}
|
|
|
|
|
|
|
|
.alert.alert-warning(
|
|
|
|
ng-switch-when="notification_institution_sso_non_canonical"
|
|
|
|
)
|
|
|
|
.notification-body
|
2020-03-03 11:36:39 -05:00
|
|
|
div
|
2019-10-29 11:41:13 -04:00
|
|
|
i.fa.fa-fw.fa-exclamation-triangle(aria-hidden="true")
|
|
|
|
| !{translate("tried_to_log_in_with_email", {email: "{{notification.requestedEmail}}"})} !{translate("in_order_to_match_institutional_metadata_associated", {email: "{{notification.institutionEmail}}"})}
|
|
|
|
.notification-close
|
|
|
|
button(ng-click="dismiss(notification)").close.pull-right
|
|
|
|
span(aria-hidden="true") ×
|
|
|
|
span.sr-only #{translate("close")}
|
|
|
|
|
|
|
|
.alert.alert-info(
|
|
|
|
ng-switch-when="notification_institution_sso_already_registered"
|
|
|
|
)
|
|
|
|
.notification-body
|
|
|
|
| !{translate("tried_to_register_with_email", {appName: settings.appName, email: "{{notification.email}}"})}
|
|
|
|
| #{translate("we_logged_you_in")}
|
|
|
|
.notification-action
|
2019-12-09 10:09:19 -05:00
|
|
|
a.btn.btn-sm.btn-info(href="/learn/how-to/Institutional_Login")
|
2019-10-29 11:41:13 -04:00
|
|
|
| #{translate("find_out_more")}
|
|
|
|
.notification-close
|
|
|
|
button(ng-click="dismiss(notification)").close.pull-right
|
|
|
|
span(aria-hidden="true") ×
|
|
|
|
span.sr-only #{translate("close")}
|
|
|
|
|
2019-11-12 08:59:04 -05:00
|
|
|
.alert.alert-danger(
|
|
|
|
ng-switch-when="notification_institution_sso_linked_by_another"
|
|
|
|
)
|
|
|
|
.notification-body
|
2020-03-03 11:36:39 -05:00
|
|
|
div
|
2019-11-12 08:59:04 -05:00
|
|
|
i.fa.fa-fw.fa-exclamation-triangle(aria-hidden="true")
|
|
|
|
| !{translate("institution_account_tried_to_add_already_registered")}
|
|
|
|
.notification-close
|
|
|
|
button(ng-click="dismiss(notification)").close.pull-right
|
|
|
|
span(aria-hidden="true") ×
|
|
|
|
span.sr-only #{translate("close")}
|
2019-10-21 12:02:01 -04:00
|
|
|
|
|
|
|
ul.list-unstyled(
|
2018-10-11 10:39:54 -04:00
|
|
|
ng-controller="EmailNotificationController",
|
|
|
|
ng-cloak
|
|
|
|
)
|
2019-10-21 12:02:01 -04:00
|
|
|
li.notification-entry(
|
2018-10-11 10:39:54 -04:00
|
|
|
ng-repeat="userEmail in userEmails",
|
2019-10-29 11:41:13 -04:00
|
|
|
ng-if="showConfirmEmail(userEmail) && projects.length > 0"
|
2018-10-11 10:39:54 -04:00
|
|
|
)
|
2019-10-21 12:02:01 -04:00
|
|
|
.alert.alert-warning(ng-if="!userEmail.confirmationInflight")
|
|
|
|
.notification-body
|
|
|
|
| #{translate("please_confirm_email", {emailAddress: "{{ userEmail.email }}"})}
|
|
|
|
|
|
|
|
|
a(
|
|
|
|
href
|
|
|
|
ng-click="resendConfirmationEmail(userEmail)"
|
|
|
|
) (#{translate('resend_confirmation_email')})
|
|
|
|
.alert.alert-warning(ng-if="userEmail.confirmationInflight")
|
|
|
|
.notification-body
|
|
|
|
i.fa.fa-spinner.fa-spin(aria-hidden="true")
|
|
|
|
|
|
2020-03-03 11:36:39 -05:00
|
|
|
| #{translate('resending_confirmation_email')}…
|