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

{% if plant %}Edit{% else %}New{% endif %} Plant

{{ form.hidden_tag() }}

{{ form.name.label }}
{{ form.name(size=40) }}

{{ form.type.label }}
{{ form.type(size=40) }}

{{ form.notes.label }}
{{ form.notes(rows=5, cols=40) }}

{{ form.is_active() }} {{ form.is_active.label }}

{{ form.submit() }}

{% endblock %}