All checks were successful
Build and Push Docker Image / build (push) Successful in 51s
- Implemented `Favorite` model with unique user-item constraint and timestamped records - Added `favorites:index` and `favorites:toggle` views with AJAX support for toggling favorites - Built templates and front-end assets for the favorites page and integration with item grids - Extended header with favorites link and dynamic counter - Added tests covering models, views, and templates for the favorites functionality - Updated admin to enable management of favorites via Django admin interface
34 lines
1.3 KiB
HTML
34 lines
1.3 KiB
HTML
<!-- FOOTER FRAGMENT -->
|
|
<footer>
|
|
<div class="container footer-container">
|
|
<div class="footer-col">
|
|
<div class="footer-logo">SantehRay</div>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>ПОКУПАТЕЛЮ</h4>
|
|
<ul>
|
|
<li><a href="/catalog/">Каталог</a></li>
|
|
<li><a href="{% url 'services' %}">Услуги</a></li>
|
|
<li><a href="/catalog/">Акции</a></li>
|
|
<li><a href="/catalog/">Новинки</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>ПОМОЩЬ</h4>
|
|
<ul>
|
|
<li><a href="{% url 'shipping' %}">Доставка и оплата</a></li>
|
|
<li><a href="{% url 'warranty' %}">Гарантия и возврат</a></li>
|
|
<li><a href="{% url 'home' %}#faq-section">Ответы на вопросы</a></li>
|
|
<li><a href="{% url 'contacts' %}">Контакты</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>КОНТАКТЫ</h4>
|
|
<ul>
|
|
<li><a href="mailto:info@santehray.by">info@santehray.by</a></li>
|
|
<li>+375 (29) 688-18-19</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</footer>
|