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

Products

New Product
{% for r in rows %} {% endfor %}
IDImageNamePriceActiveCreatedActions
{{ r.id }} {% if r.image_path %} img {% else %}-{% endif %} {{ r.name }} ${{ '%.2f'|format(r.price) }} {{ 'Yes' if r.is_active else 'No' }} {{ r.created_at }} Edit
{% endblock %}