mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
41f75b5936
Fix potential Angular XSS issues GitOrigin-RevId: a18a609a25b29e910cb78e28a37398417cfe4842
50 lines
1.6 KiB
Text
50 lines
1.6 KiB
Text
extends ../layout
|
|
|
|
include ./dashboard/_team_name_mixin
|
|
|
|
block content
|
|
.content.content-alt(ng-cloak)
|
|
.container
|
|
.row
|
|
.col-md-8.col-md-offset-2
|
|
-if (fromPlansPage)
|
|
.alert.alert-warning
|
|
p You already have a subscription
|
|
.card
|
|
.page-header
|
|
h1 #{translate("your_subscription")}
|
|
|
|
-var hasDisplayedSubscription = false
|
|
-if (personalSubscription)
|
|
-hasDisplayedSubscription = true
|
|
include ./dashboard/_personal_subscription
|
|
|
|
-if (managedGroupSubscriptions && managedGroupSubscriptions.length > 0)
|
|
include ./dashboard/_managed_groups
|
|
|
|
-if (managedInstitutions && managedInstitutions.length > 0)
|
|
include ./dashboard/_managed_institutions
|
|
|
|
-if (managedPublishers && managedPublishers.length > 0)
|
|
include ./dashboard/_managed_publishers
|
|
|
|
-if (memberGroupSubscriptions && memberGroupSubscriptions.length > 0)
|
|
-hasDisplayedSubscription = true
|
|
include ./dashboard/_group_memberships
|
|
|
|
-if (confirmedMemberInstitutions && confirmedMemberInstitutions.length > 0)
|
|
include ./dashboard/_institution_memberships
|
|
|
|
-if (v1SubscriptionStatus)
|
|
include ./dashboard/_v1_subscription_status
|
|
|
|
-if (!hasDisplayedSubscription)
|
|
-if (hasSubscription)
|
|
-hasDisplayedSubscription = true
|
|
p(ng-non-bindable) You're on an #{settings.appName} Paid plan. Contact
|
|
a(href="mailto:support@overleaf.com") support@overleaf.com
|
|
| to find out more.
|
|
-else
|
|
p(ng-non-bindable) You're on the #{settings.appName} Free plan.
|
|
|
|
|
a(href="/user/subscription/plans").btn.btn-primary Upgrade now
|