mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
28a4be296f
Institution SSO dashboard notifications GitOrigin-RevId: c80117c2732fafdc9d09eed69db06a26ad28a663
106 lines
No EOL
5.3 KiB
Text
106 lines
No EOL
5.3 KiB
Text
.user-notifications(ng-controller="NotificationsController")
|
|
ul.list-unstyled(
|
|
ng-if="notifications.length > 0",
|
|
ng-cloak
|
|
)
|
|
li.notification-entry(
|
|
ng-repeat="notification in notifications",
|
|
)
|
|
div(ng-switch="notification.templateKey" ng-hide="notification.hide")
|
|
.alert.alert-info(ng-switch-when="notification_project_invite", ng-controller="ProjectInviteNotificationController")
|
|
.notification-body(ng-show="!notification.accepted")
|
|
| !{translate("notification_project_invite_message", { userName: "{{ userName }}", projectName: "{{ projectName }}" })}
|
|
a.pull-right.btn.btn-sm.btn-info(href, ng-click="accept()", ng-disabled="notification.inflight")
|
|
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-body(ng-show="notification.accepted")
|
|
| !{translate("notification_project_invite_accepted_message", { projectName: "{{ projectName }}" })}
|
|
a.pull-right.btn.btn-sm.btn-info(href="/project/{{ notification.messageOpts.projectId }}") #{translate("open_project")}
|
|
.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_ip_matched_affiliation")
|
|
.notification-body
|
|
| It looks like you're at
|
|
strong {{ notification.messageOpts.university_name }}! <br/>
|
|
| Did you know that {{notification.messageOpts.university_name}} is providing
|
|
strong free Overleaf Professional accounts
|
|
| to everyone at {{notification.messageOpts.university_name}}? <br/>
|
|
| Add an institutional email address to claim your account.
|
|
a.pull-right.btn.btn-sm.btn-info(href="/user/settings")
|
|
| Add Affiliation
|
|
.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_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
|
|
a.btn.btn-info(href="{{samlInitPath}}?university_id={{notification.institutionId}}&auto=project&email={{notification.email}}")
|
|
| #{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
|
|
div
|
|
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
|
|
a.btn.btn-info(href="/")
|
|
| #{translate("find_out_more")}
|
|
.notification-close
|
|
button(ng-click="dismiss(notification)").close.pull-right
|
|
span(aria-hidden="true") ×
|
|
span.sr-only #{translate("close")}
|
|
.alert.alert-info(ng-switch-default)
|
|
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")}
|
|
|
|
|
|
ul.list-unstyled(
|
|
ng-controller="EmailNotificationController",
|
|
ng-cloak
|
|
)
|
|
li.notification-entry(
|
|
ng-repeat="userEmail in userEmails",
|
|
ng-if="showConfirmEmail(userEmail)"
|
|
)
|
|
.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")
|
|
|
|
|
| #{translate('resending_confirmation_email')}… |