Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {% extends "navstruct.html" %}
- {% block title %}
- {% if category %}{{ category.name }}{% else %}Товары{% endif %}
- {% endblock %}
- {% block content %}
- <div id="sidebar">
- <h3>Categories</h3>
- <ul>
- <li {% if not category %}class="selected"{% endif %}>
- <a href="{% url "shop:product_list" %}">All</a>
- </li>
- {% for c in categories %}
- <li {% if category.slug == c.slug %}class="selected"{% endif %}>
- <a href="{{ c.get_absolute_url }}">{{ c.name }}</a>
- </li>
- {% endfor %}
- </ul>
- </div>
- <div id="main" class="product-list">
- <h1>{% if category %}{{ category.name }}{% else %}Products{% endif %}</h1>
- {% for product in products %}
- <div class="item">
- <a href="{{ product.get_absolute_url }}">
- <img src="{% if product.image %}{{ product.image.url }}{% else %}{% static "img/no_image.png" %}{% endif %}">
- </a>
- <a href="{{ product.get_absolute_url }}">{{ product.name }}</a><br>
- ${{ product.price }}
- </div>
- {% endfor %}
- </div>
- {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment