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

Pinned Collections

{% for collection in pinned_collections %} {% if collection.pinned %}

{{ collection.name }}

{% markdown %}{{ collection.description | truncate(512) }}{% endmarkdown %}

{{ collection.products | length }} Products

View
{%endif%} {%endfor%}

Pinned Products

{% for product in pinned_products %} {% if product.pinned %}

{{ product.name }}

{% markdown %}{{ product.description | truncate(256) }}{% endmarkdown %}

Uploaded {{ product.uploaded.strftime("%Y-%m-%d") }}

View
{%endif%} {%endfor%}

Recently Created Collections

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

Recently Uploaded Products

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