Как сделать счетчик закладок для каждого пользователя
Сделал систему закладок как в статье , всё работает прекрасно, но у меня на сайте в панели меню есть кнопка избранного, где отображается сколько статей добавил в избранное пользователь, как сделать так, что бы он обновлялся так же как общий счетчик в статье
до нажатия на кнопку добавить в избранное
код меню (храниться в base шаблоне и подключается {% extends "main/base.html" %})
<nav> <a href="/" style="color: inherit; text-decoration: none;"> <picture> <source type="image/svg+xml" + srcset="{% static 'icons/article-white-18dp.svg' %}"> <img src="{% static 'icons/article-white-18dp.svg' %}" width="16" height="16"> </picture> <span class="body-2" style="color: inherit;">Статьи</span> <span class="counter">{{ article_count.count }}</span> </a> <a href="{% url 'post_favourite_list' %}" style="color: inherit; text-decoration: none;"> <picture> <source type="image/svg+xml" + srcset="{% static 'icons/favorite-white-18dp.svg' %}"> <img src="{% static 'icons/favorite-white-18dp.svg' %}" width="16" height="16"> </picture> <span class="body-2">Избранное</span> <span class="counter" data-count="bookmark">{{ request.user.bookmarkarticle_set.all.count }}</span> </a> </nav>
жс код аякса
function to_bookmarks() { var current = $(this); var type = current.data('type'); var pk = current.data('id'); var action = current.data('action'); $.ajax({ url : "/api/" + type + "/" + pk + "/" + action + "/", type : 'POST', data : { 'obj' : pk }, success : function (json) { current.find("[data-count='" + action + "']").text(json.count); } }); return false; } // Подключение обработчика $(function() { $('[data-action="bookmark"]').click(to_bookmarks); });
код кнопки "добавить в избранное" в статье
<a data-id="{{ post.id }}" data-type="article" data-action="bookmark" title="Избранное"> <button type="button" class="btn btn-danger" style="margin-top: 20px "> {% if post.bookmarkarticle_set.all|user_in:user %} <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-heart-fill" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M8 1.314C12.438-3.248 23.534 4.735 8 15-7.534 4.736 3.562-3.248 8 1.314z"></path> </svg> {% else %} <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-heart-fill" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M8 1.314C12.438-3.248 23.534 4.735 8 15-7.534 4.736 3.562-3.248 8 1.314z"></path> </svg> {% endif %} <span data-count="bookmark">{{ post.get_bookmark_count }}</span> </button> </a>
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.Do you like it? Share on social networks!
AD
- Akiv Doros
- Nov. 11, 2024, 7:58 p.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:50points,
- Rating points-4
m
- molni99
- Oct. 26, 2024, 6:37 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:80points,
- Rating points4
m
- molni99
- Oct. 26, 2024, 6:29 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:20points,
- Rating points-10
Last comments
Evgenii LegotckoiOct. 31, 2024, 6:37 p.m.
Fb3 file reader on Qt Creator Подскажите как это запустить? Я не шарю в программировании и кодинге. Скачал и установаил Qt, но куча ошибок выдается и не запустить. А очень надо fb3 переконвертировать в html
ИМ
Django - Lesson 064. How to write a Python Markdown extension Приветствую Евгений! У меня вопрос. Можно ли вставлять свои классы в разметку редактора markdown? Допустим имея стандартную разметку: <ul> <li></li> <li></l…
Игорь МаксимовOct. 5, 2024, 12:51 p.m.
QML - Lesson 016. SQLite database and the working with it in QML Qt Здравствуйте, возникает такая проблема (я новичок): ApplicationWindow неизвестный элемент. (М300) для TextField и Button аналогично. Могу предположить, что из-за более новой верси…
Qt Linux - Lesson 001. Autorun Qt application under Linux как сделать автозапуск для флэтпака, который не даёт создавать файлы в ~/.config - вот это вопрос ))
Now discuss on the forum
Evgenii LegotckoiJune 24, 2024, 8:11 p.m.
t
google domain [url=https://google.com/]domain[/url] domain [http://www.example.com link title]
tonypeachey1Nov. 15, 2024, 11:04 a.m.
NSProjectJune 4, 2022, 8:49 a.m.
IscanderCheOct. 31, 2024, 7:43 p.m.
Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…
Скорее всего current не находит, смотрите, что в консоле браузера вываливает. Наверняка там есть ошибки.