{% extends 'shop/base.html' %} {% load static %} {% load i18n %} {% block title %}{% trans "Shop" %} - Fursuit Shop{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% trans "Fursuit Shop" %}

{% trans "Discover our handcrafted fursuits and accessories" %}

{% if products %}
{% for product in products %}
{% if product.image %} {{ product.name }} {% else %} Placeholder {% endif %}
{% if product.on_sale %} Sale! {% endif %} {% if product.is_custom_order %} Custom {% endif %}
{{ product.name }}

{{ product.description|truncatewords:15 }}

{% if product.product_type == 'fursuit' %} Fursuit {% else %} Printed Item {% endif %} {% if product.fursuit_type %} {{ product.get_fursuit_type_display }} {% endif %}
{% if product.on_sale %} {{ product.sale_price }} € {{ product.base_price }} € {% else %} {{ product.base_price }} € {% endif %}
{% endfor %}
{% if products.has_other_pages %} {% endif %} {% else %}

{% trans "No products found" %}

{% trans "Try adjusting your filters or check back later for new products." %}

{% trans "Clear Filters" %}
{% endif %}
{% endblock %}