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

Products

New Product
{% partialdef table inline=True %}
{% with th_class="text-sm font-medium text-gray-900 border-r px-6 py-4 text-left" %} {% endwith %} {% with td_class="px-6 py-4 whitespace-nowrap text-sm font-medium border-r text-gray-900" %} {% for product in products_page %} {% endwith %} {% endfor %} {% endwith %}
Name Description Price Slug Sku Actions
{{ product.name }} {{ product.description }} {{ product.price }} {{ product.slug }} {{ product.sku }} {% with href_class="text-blue-600 hover:underline hover:text-blue-500" %} View| Edit| Delete
{% if products_page.paginator.num_pages > 1 %}
{% endif %}
{% endpartialdef %} {% endblock %}