
improved dark mode user pref Fixed invalid default Group Fixed subscriptions showing when plugin was disabled Fixed messages and notifications showing when disabled
42 lines
1.4 KiB
HTML
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="">{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>
|