Sha256: b38bb581a6b017210e925666e19d98b9ec2e2e9adbab4e54399696de960f9f4b

Contents?: true

Size: 1.69 KB

Versions: 10

Compression:

Stored size: 1.69 KB

Contents

<%= content_for :breadcrumbs do %>
  <%= breadcrumbs_for_my_account %>
<% end %>

<div class="row">
  <%= render partial: 'layouts/user_menu' %>

  <div class="col-md-9 mu-tab-body">
    <div class="mu-user-header d-flex justify-content-between">
      <span>
        <h1><%= t(:notifications) %></h1>
      </span>
      <span>
        <a href="notifications/manage" class="btn btn-complementary"><%= t(:manage_notifications) %></a>
      </span>
    </div>
    <% if @notifications.empty? %>
      <div class="mu-tab-body">
        <%= t :notifications_will_be_here %>
      </div>
    <% else %>


      <div class="table-responsive mb-3">
        <table class="table">
          <tr class="fw-bold">
            <td></td>
            <td><%= t(:content) %></td>
            <td><%= t(:created_at) %></td>
          </tr>

          <% @notifications.each do |notification| %>
            <tr class="<%= background_for_notification notification %>" >
              <td class="col-md-1">
                <%= link_to icon_for_read(notification.read?), "notifications/#{notification.id}/toggle_read", tooltip_options(:toggle_read).merge(method: :post, role: :button) %>
              </td>
              <td class="col-md-8 text-break">
                <%= render partial: "notifications/#{notification.subject}", locals: { notification: notification } %>
              </td>
              <td class="col-md-3">
                <%= friendly_time(notification.created_at, :time_since) %>
              </td>
            </tr>
          <% end %>
        </table>
      </div>

      <div class="notification-pagination">
        <%= paginate @notifications, nav_class: 'pagination' %>
      </div>
    <% end %>
  </div>
</div>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
mumuki-laboratory-9.23.0 app/views/users/notifications.html.erb
mumuki-laboratory-9.22.0 app/views/users/notifications.html.erb
mumuki-laboratory-9.21.0 app/views/users/notifications.html.erb
mumuki-laboratory-9.20.1 app/views/users/notifications.html.erb
mumuki-laboratory-9.20.0 app/views/users/notifications.html.erb
mumuki-laboratory-9.19.0 app/views/users/notifications.html.erb
mumuki-laboratory-9.18.1 app/views/users/notifications.html.erb
mumuki-laboratory-9.18.0 app/views/users/notifications.html.erb
mumuki-laboratory-9.17.0 app/views/users/notifications.html.erb
mumuki-laboratory-9.16.0 app/views/users/notifications.html.erb