self-hosting: Link free tier CTA button to server installation page.

Fixes #28929
This commit is contained in:
Aman Agrawal 2024-02-21 09:24:23 +00:00 committed by Tim Abbott
parent 4013336e3c
commit af09f32b48
2 changed files with 9 additions and 0 deletions

View File

@ -180,9 +180,15 @@
Unlimited push notifications<br />until {{ customer_plan.end_date.strftime('%d %B, %Y') }}
</span>
{% elif not is_self_hosted_realm %}
{% if rendering_page == 'self_hosting' %}
<a href="https://zulip.readthedocs.io/en/stable/production/install.html" class="button get-started-button">
Install a Zulip server
</a>
{% else %}
<a href="/self-hosting/" class="button get-started-button">
Self-host Zulip
</a>
{% endif %}
{% else %}
<div class="button-placeholder"></div>
{% endif %}

View File

@ -280,7 +280,10 @@
</div>
<div class="portico-pricing showing-self-hosted">
{% with %}
{% set rendering_page="self_hosting" %}
{% include "corporate/pricing_model.html" %}
{% endwith %}
</div>
</div>