{% extends "base.html" %} {% load static %} {% load i18n %} {% block title %}{% trans "Create Company" %} | {{ block.super }}{% endblock %} {% block content %}

{% trans "Create a New Company" %}

{% csrf_token %} {% for field in form %}
{{ field }} {% if field.help_text %}

{{ field.help_text }}

{% endif %} {% if field.errors %}
{{ field.errors }}
{% endif %}
{% endfor %}
{% trans "Cancel" %}
{% endblock %}