mirror of https://github.com/zulip/zulip.git
plans_page: Add independent additional info sections for cloud, self-hosted.
This commit is contained in:
parent
29a09ca793
commit
b0db397ec6
|
@ -18,10 +18,88 @@
|
|||
{% include "corporate/pricing_model.html" %}
|
||||
</div>
|
||||
|
||||
<div class="additional-pricing-information">
|
||||
<!-- This is the subsection that displays with cloud plans. -->
|
||||
|
||||
<div class="additional-pricing-information cloud-additional-pricing">
|
||||
<div class="discounts-section">
|
||||
<header>
|
||||
<h2>Discounts?</h2>
|
||||
<h2>Cloud Discounts?</h2>
|
||||
<p>
|
||||
We sponsor hundreds of worthy organizations
|
||||
</p>
|
||||
</header>
|
||||
<div class="discounted-community-plan">
|
||||
<h3>Community plan</h3>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="/for/open-source/">Open source projects</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/for/research/">Research groups or departments</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/for/events/">Academic conferences and most other non-profit events</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="discounted-business-plan">
|
||||
<h3>Business plan with 85% discount</h3>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="/for/education/">Education</a> (online or in-person)
|
||||
</li>
|
||||
<li>
|
||||
<a href="/for/communities/">Non-profits and communities</a>
|
||||
</li>
|
||||
</ul>
|
||||
<a href="{{ sponsorship_url }}" class="sponsorship-button">Request sponsorship</a>
|
||||
<p class="contact-note">
|
||||
If you don’t have a Zulip account yet, contact us via
|
||||
<a href="mailto:contact@zulip.com">contact@zulip.com</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="questions-section">
|
||||
<header>
|
||||
<h2>Other questions?</h2>
|
||||
<p>
|
||||
See our <a href="/help/zulip-cloud-billing">billing help page</a> for
|
||||
additional details
|
||||
</p>
|
||||
</header>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="/help/zulip-cloud-billing#differences-between-zulip-cloud-plans">Differences between Zulip Cloud plans</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/help/zulip-cloud-billing#payment-methods">Payment methods</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/help/zulip-cloud-billing#temporary-users-and-guests">Temporary users and guests</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="/help/migrating-from-other-chat-tools">Migrating from other chat tools</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://zulip.com/help/trying-out-zulip">Trying out Zulip</a>
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
If you have any other questions, please don’t hesitate to reach out to
|
||||
<a href="mailto:sales@zulip.com">sales@zulip.com</a>.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- This is the subsection that displays with self-hosted plans. -->
|
||||
|
||||
<div class="additional-pricing-information self-hosted-additional-pricing">
|
||||
<div class="discounts-section">
|
||||
<header>
|
||||
<h2>Self-Hosted Discounts?</h2>
|
||||
<p>
|
||||
We sponsor hundreds of worthy organizations
|
||||
</p>
|
||||
|
|
|
@ -1257,13 +1257,15 @@ ul {
|
|||
}
|
||||
|
||||
&.showing-cloud {
|
||||
.self-hosted-plan-pricing {
|
||||
.self-hosted-plan-pricing,
|
||||
.self-hosted-additional-pricing {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
&.showing-self-hosted {
|
||||
.cloud-plan-pricing {
|
||||
.cloud-plan-pricing,
|
||||
.cloud-additional-pricing {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue