{% extends "core.html" %} {% block content %}

Recently Created Collections

{% for collection in collections %} {% endfor %}
Name Description Number of Products
{{ collection.name }} {{ collection.description | truncate }} {{ collection.products|length }}

Recently Uploaded Products

{% for product in products %} {% endfor %}
Name Description Uploaded Owner
{{ product.name }} {{ product.description | truncate }} {{ product.uploaded.strftime("%Y-%m-%d") }} {{ product.owner }}
{% endblock %}