mirror of https://github.com/zulip/zulip.git
support: Disable adding discount for fixed price plans.
Discount is applied relative to the price per license of our normal plans. For fixed price plans, the concept of discount doesn't make any sense since we manually assign a price for the entire realm irrespective of the number of users in the realm.
This commit is contained in:
parent
4b99f9e407
commit
023a33dc49
|
@ -64,8 +64,13 @@
|
|||
<b>Discount (use 85 for nonprofits)</b>:<br>
|
||||
{{ csrf_input }}
|
||||
<input type="hidden" name="realm_id" value="{{ realm.id }}" />
|
||||
{% if realm.current_plan and realm.current_plan.fixed_price %}
|
||||
<input type="number" name="discount" value="{{ get_discount_for_realm(realm) }}" disabled>
|
||||
<button type="submit" class="button rounded small support-submit-button" disabled>Update</button>
|
||||
{% else %}
|
||||
<input type="number" name="discount" value="{{ get_discount_for_realm(realm) }}" required>
|
||||
<button type="submit" class="button rounded small support-submit-button">Update</button>
|
||||
{% endif %}
|
||||
</form>
|
||||
{% if realm.current_plan %}
|
||||
<div class="current-plan-details">
|
||||
|
|
Loading…
Reference in New Issue