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

    {% trans "New billing plan" %}

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

    {% trans "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 %} {% trans "Too small" %} {% elif plan == selected_plan %} {% trans "Selected plan" %} {% elif billing.plan == plan %} {% trans "Current plan" %} {% endif %}

    {{ plan.name }}

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

    {% trans "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." %}

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

    {% endblock %}