浏览代码

[fix] show upgrade button on usage page for free users too (#4535)

* [fix] show upgrade button on usage page for free users too

* Update usage_info.html
version-14
Saurabh 7 年前
committed by Rushabh Mehta
父节点
当前提交
4b5e347ea1
共有 1 个文件被更改,包括 6 次插入4 次删除
  1. +6
    -4
      frappe/core/page/usage_info/usage_info.html

+ 6
- 4
frappe/core/page/usage_info/usage_info.html 查看文件

@@ -1,12 +1,14 @@
<div>
{% if limits.expiry %}
{% if limits.upgrade_url %}
<div class="upgrade-message padding" style="border-bottom: 1px solid #d0d8dc;">
<h4>{{ __("You have {0} days left in your subscription", [days_to_expiry]) }}</h4>
{% if limits.expiry %}
<h4>{{ __("You have {0} days left in your subscription", [days_to_expiry]) }}</h4>
{%elif%}
<h4>{{ __("You have subscribed for one user free plan") }}</h4>
{% endif %}

{% if limits.upgrade_url %}
<p>Upgrade to a premium plan with more users, storage and priority support.</p>
<button class="btn btn-primary btn-sm primary-action">Upgrade</button>
{% endif %}
</div>
{% endif %}



正在加载...
取消
保存