2014-02-12 05:23:40 -05:00
|
|
|
extends ../layout
|
|
|
|
|
2018-11-20 05:48:21 -05:00
|
|
|
include ./dashboard/_team_name_mixin
|
|
|
|
|
2019-10-16 06:10:54 -04:00
|
|
|
block head-scripts
|
2021-03-25 10:02:21 -04:00
|
|
|
script(type="text/javascript", nonce=scriptNonce, src="https://js.recurly.com/v4/recurly.js")
|
2019-07-31 04:23:13 -04:00
|
|
|
|
2014-02-12 05:23:40 -05:00
|
|
|
block content
|
2021-03-04 11:11:09 -05:00
|
|
|
main.content.content-alt(ng-cloak)
|
2018-11-19 10:44:51 -05:00
|
|
|
.container
|
2014-07-07 08:43:36 -04:00
|
|
|
.row
|
2015-12-08 13:23:28 -05:00
|
|
|
.col-md-8.col-md-offset-2
|
2021-03-24 06:09:43 -04:00
|
|
|
if (fromPlansPage)
|
2019-02-04 06:10:54 -05:00
|
|
|
.alert.alert-warning
|
|
|
|
p You already have a subscription
|
2018-11-19 10:44:51 -05:00
|
|
|
.card
|
2015-12-08 10:45:52 -05:00
|
|
|
.page-header
|
2019-07-31 04:23:13 -04:00
|
|
|
h1 #{translate("your_subscription")}
|
2015-12-08 13:23:28 -05:00
|
|
|
|
2019-02-04 06:10:54 -05:00
|
|
|
-var hasDisplayedSubscription = false
|
2021-03-24 06:09:43 -04:00
|
|
|
if (personalSubscription)
|
2019-02-04 06:10:54 -05:00
|
|
|
-hasDisplayedSubscription = true
|
2018-11-19 10:44:51 -05:00
|
|
|
include ./dashboard/_personal_subscription
|
2014-03-09 05:56:58 -04:00
|
|
|
|
2021-03-24 06:09:43 -04:00
|
|
|
if (managedGroupSubscriptions && managedGroupSubscriptions.length > 0)
|
2018-11-20 05:48:21 -05:00
|
|
|
include ./dashboard/_managed_groups
|
|
|
|
|
2021-03-24 06:09:43 -04:00
|
|
|
if (managedInstitutions && managedInstitutions.length > 0)
|
2018-11-20 05:48:21 -05:00
|
|
|
include ./dashboard/_managed_institutions
|
|
|
|
|
2021-03-24 06:09:43 -04:00
|
|
|
if (managedPublishers && managedPublishers.length > 0)
|
2018-12-18 08:22:44 -05:00
|
|
|
include ./dashboard/_managed_publishers
|
|
|
|
|
2021-03-24 06:09:43 -04:00
|
|
|
if (memberGroupSubscriptions && memberGroupSubscriptions.length > 0)
|
2019-02-04 06:10:54 -05:00
|
|
|
-hasDisplayedSubscription = true
|
2018-11-19 10:44:51 -05:00
|
|
|
include ./dashboard/_group_memberships
|
2014-08-27 07:31:01 -04:00
|
|
|
|
2021-03-24 06:09:43 -04:00
|
|
|
if (confirmedMemberAffiliations && confirmedMemberAffiliations.length > 0)
|
2018-11-20 05:48:21 -05:00
|
|
|
include ./dashboard/_institution_memberships
|
|
|
|
|
2021-03-24 06:09:43 -04:00
|
|
|
if (v1SubscriptionStatus)
|
2018-11-30 08:03:35 -05:00
|
|
|
include ./dashboard/_v1_subscription_status
|
|
|
|
|
2021-03-24 06:09:43 -04:00
|
|
|
if (!hasDisplayedSubscription)
|
|
|
|
if (hasSubscription)
|
2019-02-11 06:24:46 -05:00
|
|
|
-hasDisplayedSubscription = true
|
2019-03-18 06:24:54 -04:00
|
|
|
p(ng-non-bindable) You're on an #{settings.appName} Paid plan. Contact
|
2019-02-11 06:24:46 -05:00
|
|
|
a(href="mailto:support@overleaf.com") support@overleaf.com
|
|
|
|
| to find out more.
|
2021-03-24 06:09:43 -04:00
|
|
|
else
|
2019-03-18 06:24:54 -04:00
|
|
|
p(ng-non-bindable) You're on the #{settings.appName} Free plan.
|
2019-02-11 06:24:46 -05:00
|
|
|
|
|
2020-02-03 09:11:36 -05:00
|
|
|
a(ng-controller="UpgradeSubscriptionController" href="/user/subscription/plans" ng-click="upgradeSubscription()").btn.btn-primary Upgrade now
|