{% extends "base.html" %} {% load i18n %} {% load translations %} {% load crispy_forms_tags %} {% block breadcrumbs %}
  • {% trans "Create component" %}
  • {% endblock %} {% block content %} {% if not projects %} {% trans "You do not have permission to create components in any projects." as msg %} {% show_message "warning" msg %} {% if has_billing %} {% include "snippets/billing-failure.html" %} {% endif %} {% else %}
    {% csrf_token %}

    {% documentation_icon 'admin/projects' 'component' right=True %} {% trans "Add new translation component" %}

    {% crispy form %} {% if stage == "create" %}
    {% trans "You will be able to edit more options in the component settings after creating it." %}
    {% endif %}
    {% endif %} {% endblock %}