{% extends 'base.html' %} {% block content %}

Create a new Sistema IMMEX por cliente

{% csrf_token %} {% if form.non_field_errors %} {% endif %}
{{ form.id_sistema.label }} {{ form.id_sistema }} {% if form.id_sistema.errors %}
    {% for error in form.id_sistema.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{{ form.cliente.label}} {{ form.cliente }} {% if form.cliente.errors %}
    {% for error in form.cliente.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{{ form.num_licencias.label }} {{ form.num_licencias }} {% if form.num_licencias.errors %}
    {% for error in form.num_licencias.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% endblock content %} {% block scripts %} {% endblock scripts %}