This repository has been archived on 2024-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
arka-mvp/templates/catalog.html
2022-09-15 22:25:55 +03:00

46 lines
1.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'base.html' %}
{% block title %} Каталог {% endblock %}
{% block styles %}
{% load static %}
<link rel="stylesheet" type="text/css" href="{% static 'css/catalog-style.css' %}">
{% endblock %}
{% block content %}
<h1>
Каталог
{% if cat_name %}
/ {{ cat_name }}
{% endif %}
</h1>
<div class="catalog-container">
<div class="catalog-categories">
<h4 style="text-align: center">Категории</h4>
<ul>
<li><a href="{% url 'catalog' %}">Все категории</a></li>
{% for c in categories %}
<li><a href="{% url 'catalog' %}?cat={{ c.id }}">{{ c.cat_name }}</a></li>
{% endfor %}
</ul>
</div>
{% if products %}
<div class="catalog-products">
{% for p in products %}
<a class="product" href="{% url 'product_view' p.id %}" style="text-decoration: none">
<img src="{{ p.get_photo_url }}" alt="photo">
<div>
<div> {{ p.prod_name }} </div>
<div><strong> {{ p.prod_price }} </strong></div>
</div>
</a>
{% endfor %}
</div>
{% else %}
<div style="display: flex; flex-wrap: wrap; align-content: center; flex-grow: 1;">
<h3 style="text-align: center; width: 100%">Упс, тут нет доступных товаров...</h3>
</div>
{% endif %}
</div>
{% endblock %}