{% extends 'base.html' %} {% block title %}{{ module_title }} - Manufacturing App{% endblock %} {% block content %}

{% if is_create %} Create Warehouse {% else %} Edit Warehouse {% endif %}

{% csrf_token %}
{{ form.name }} {% if form.name.errors %}
{% for error in form.name.errors %}{{ error }}{% endfor %}
{% endif %}
{{ form.is_active }}
{% if form.is_active.errors %}
{% for error in form.is_active.errors %}{{ error }}{% endfor %}
{% endif %}
{{ form.location }} {% if form.location.errors %}
{% for error in form.location.errors %}{{ error }}{% endfor %}
{% endif %}
Cancel
{% endblock %}