mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
7785c7b59e
Load Recurly JS Separately GitOrigin-RevId: 8baa2be76fa9d8a47676bc0bd0a80f4c05cc1600
53 lines
1.7 KiB
Text
53 lines
1.7 KiB
Text
extends ../layout
|
|
|
|
include ./dashboard/_team_name_mixin
|
|
|
|
block scripts
|
|
script(src="https://js.recurly.com/v4/recurly.js")
|
|
|
|
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
|