mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
12 lines
334 B
Text
12 lines
334 B
Text
<% content_for :title, "Notifications" %>
|
|
<div class="w-full">
|
|
<div class="flex justify-between items-center">
|
|
<h1 class="font-bold text-4xl">Notifications</h1>
|
|
</div>
|
|
|
|
<div id="notifications" class="min-w-full">
|
|
<% @notifications.each do |notification| %>
|
|
<%= render notification %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|