Files
thetempusproject/app/plugins/notifications/views/nav/recentNotificationsDropdown.html
Joey Kimsey 32a9711ade wip from ATB
2025-01-21 19:19:06 -05:00

42 lines
1.4 KiB
HTML

<!-- Notifications Dropdown -->
<div class="dropdown nav-item mx-2">
<a
href="#"
class="d-flex align-items-center text-white text-decoration-none dropdown-toggle"
id="notificationsDropdown"
data-bs-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false">
<i class="fa fa-fw fa-bell"></i><span class="ms-2">{NBADGE}</span>
</a>
<ul class="dropdown-menu dropdown-menu-dark dropdown-menu-end text-small shadow" aria-labelledby="notificationsDropdown">
{LOOP}
<!-- Notification Item -->
<li>
<a href="{ROOT_URL}notifications" class="dropdown-item">
<div class="media">
<div class="media-body">
<p class="small text-muted mb-1"><i class="fa fa-clock-o me-1"></i> {DTC}{createdAt}{/DTC}</p>
<span>{notification}</span>
</div>
</div>
</a>
</li>
{/LOOP}
{ALT}
<li class="px-3 text-center">
<strong>No Notifications</strong>
</li>
{/ALT}
<!-- Footer -->
<li>
<hr class="dropdown-divider">
</li>
<li>
<a href="/notifications" class="dropdown-item text-center">
See All Notifications
</a>
</li>
</ul>
</div>