{% extends "base.html" %} {% load crispy_forms_tags humanize i18n translations %} {% block breadcrumbs %} {% endblock breadcrumbs %} {% block content %}
{% if not choose_billing and not billing %}

{% translate "New billing plan" %}

{% translate "Please choose a hosting plan that fits the size of your project." %}
{% else %}

{% translate "Current billing status" %}

{% if choose_billing %}
{{ choose_billing|crispy }}
{% endif %} {% if billing %} {% include "billing/status.html" with projects=billing.projects.all hide_buttons=True %} {% endif %}
{% endif %}
{% for plan in plans %}
{% if billing and not plan.would_fit %} {% translate "Too small" %} {% elif plan == selected_plan %} {% translate "Selected plan" %} {% elif billing.plan == plan %} {% translate "Current plan" %} {% endif %}

{{ plan.name }}

{% translate "Hosted strings limit" %} {% if plan.display_limit_hosted_strings %} {{ plan.display_limit_hosted_strings|intcomma }} {% else %} {% translate "Unlimited" %} {% endif %}
{% translate "Source strings limit" %} {% if plan.display_limit_strings %} {{ plan.display_limit_strings|intcomma }} {% else %} {% translate "Unlimited" %} {% endif %}
{% translate "Languages limit" %} {% if plan.display_limit_languages %} {{ plan.display_limit_languages|intcomma }} {% else %} {% translate "Unlimited" %} {% endif %}
{% translate "Projects limit" %} {% if plan.display_limit_projects %} {{ plan.display_limit_projects|intcomma }} {% else %} {% translate "Unlimited" %} {% endif %}
{% endfor %}

{% translate "Pricing is based on the number of source strings and target languages. The source string is a text unit defined in a translation format, it can be a word, sentence or paragraph." %}

{% translate "All listed prices exclude VAT." %} {% translate "EU end users and Czech companies will be charged with additional 21% VAT." %} {% translate "The reverse charge applies to invoices issued to businesses within the EU." %}

{% endblock content %}