【发布时间】:2020-09-04 18:42:11
【问题描述】:
当django-notifications-hq 中的通知计数为 0 时,我试图隐藏通知计数 我尝试了以下方法,但它没有定期更新并正确显示数字。
{% live_notify_badge as nc %}
{% if nc > 0|add:0 %}
<span class="badge-notifications badge badge-pill badge-danger" style="float:right;margin-bottom:-3px;margin-top: -2px !important; margin-left: 10px !important; font-size: 0.6rem;">
{% live_notify_badge %}</span>
{% endif %}
【问题讨论】:
-
nc不是通知的数量。它会生成一些 HTML,这些 HTML 将调用 Javascript 来获取通知的数量。
标签: django django-templates django-notification