{% extends "base.html" %} {% block title %}{{ vendor | humanize }} products - {{ super() }}{% endblock %} {% block content %}

Products

{{ vendor }} products ({{ products.total }})

{% for product in products.items %} {% endfor %}
Product Actions
{{ product.name | humanize }}
{% if current_user.is_authenticated %} {% if product in current_user.products %} {% else %} {% endif %} {% else %} Subscribe {% endif %}
{{ pagination.links }}

Search

{% endblock %}