{% extends 'base.html' %} {% block title %}{{ form.type.data|capitalize }} Listing{% endblock %} {% block content %}

{{ form.type.data|capitalize }} Listing

{{ form.hidden_tag() }} {{ form.plant_id.label }} {{ form.plant_id() }}
{{ form.owner_actor_type.label }} {{ form.owner_actor_type() }}
{{ form.owner_actor_id.label }} {{ form.owner_actor_id() }}
{{ form.type.label }} {{ form.type() }}
{# include partial _type_fields.html here to render type-specific fields #} {% include 'exchange/_type_fields.html' %} {{ form.status.label }} {{ form.status() }}
{% endblock %}