2023-06-08 15:22:32 +03:00
|
|
|
<!-- prettier-ignore -->
|
2023-06-08 16:44:13 +03:00
|
|
|
{% if not current_user.active_notifications %}
|
2023-06-08 15:22:32 +03:00
|
|
|
<div class="flex px-4 py-3">
|
|
|
|
<div class="w-full pl-3">
|
|
|
|
<div class="text-gray-500 text-sm mb-1.5 dark:text-gray-400">
|
|
|
|
You haven't notifications!
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- prettier-ignore -->
|
|
|
|
{% endif %}
|
|
|
|
<!-- prettier-ignore -->
|
2023-06-08 16:44:13 +03:00
|
|
|
{% for notification in current_user.active_notifications[:5]%}
|
2023-06-08 15:22:32 +03:00
|
|
|
<a
|
|
|
|
href="{{notification.link}}"
|
|
|
|
class="flex px-4 py-3 hover:bg-gray-100 dark:hover:bg-gray-700">
|
|
|
|
<div class="w-full pl-3">
|
|
|
|
<div class="text-gray-500 text-sm mb-1.5 dark:text-gray-400">
|
|
|
|
{{notification.text}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
{% endfor %}
|