{% extends "macros/base.html" %} {% from 'macros/modals.html' import confirm_modal, edit_product_modal %} {% block title %}Catálogo de Productos{% endblock %} {% block head %} {% endblock %} {% block content %}

Catálogo de Productos por Zona

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message|safe }}
{% endfor %} {% endif %} {% endwith %} {{ edit_product_modal(zonas) }}
Agregar Producto Maestro
{% for prod in productos %} {% endfor %}
Producto Maestro Acciones
{{ prod.name }} {{ confirm_modal( id='deleteProd' ~ prod.id, title='Eliminar Producto', message='¿Eliminar "' ~ prod.name ~ '"? Esto fallará si el producto ya tiene ventas registradas.', action_url=url_for('delete_product', id=prod.id), btn_class='btn-danger', btn_text='Eliminar' ) }}
{% for prod in productos %} {% endfor %} {% endblock %} {% block scripts %} {% endblock %}