Files
BeWoPlaner/BeWoPlanerMobil/Views/DevExpressScheduler/NotificationsLinkPartial.cshtml
2026-06-29 13:45:41 +02:00

10 lines
316 B
Plaintext

@model BeWoPlanerMobil.Models.DevExpressSchedulerModel
@if(Model.NotificationCount == 0)
{
<a href="#" class="disabled h-100 align-middle" style="text-decoration: underline;">keine Benachrichtigungen</a>
}
else
{
<a href="#" onclick="$('#notifications-popup').modal('show');">@Model.GetNotificationInfo()</a>
}