{# Billing helpers. limit(): a "limit reached" banner with an Upgrade link on any plan (hidden on self-hosted). paused(): label for items paused by enforcement. #} {% macro limit(used, cap, what, hint='') -%} {% if not selfhosted and cap is not none and cap < 999 and used >= cap %}
You've used {{ used }}/{{ cap }} {{ what }} on the {{ ws_plan_name }} plan.{{ ' ' ~ hint if hint }}Upgrade
{% endif %} {%- endmacro %} {% macro paused(flag, what='') -%} {% if flag %}paused ยท plan{% endif %} {%- endmacro %} {% macro locked(text) -%} {% if not selfhosted %}
{{ text }}Upgrade
{% endif %} {%- endmacro %}