Sha256: bcd60962ea724a35fd6fa0d1e8c1ea74c111b21e12b372d3954a68ec4430fa68

Contents?: true

Size: 746 Bytes

Versions: 5

Compression:

Stored size: 746 Bytes

Contents

<div class='container-fluid'>
  <h3 class='pt-4'><%= t '.title' %></h3>

  <div class='row'>
    <%= content_tag 'table', id: 'logs', class: 'table table-striped',
      data: {source: logs_path(format: :json)} do %>
      <thead>
        <tr>
          <th class='severity'>
            <%= Log.human_attribute_name(:severity) %>
          </th>
          <th class='timestamp'>
            <%= Log.human_attribute_name(:created_at) %>
          </th>
          <th class='message'>
            <%= Log.human_attribute_name(:message) %>
          </th>
          <th class='category'>
            <%= Log.human_attribute_name(:category) %>
          </th>
        </tr>
      </thead>
      <tbody>
      </tbody>
    <% end %>
  </div>

</div>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
chaltron-1.0.4 app/views/chaltron/logs/index.html.erb
chaltron-1.0.3 app/views/chaltron/logs/index.html.erb
chaltron-1.0.2 app/views/chaltron/logs/index.html.erb
chaltron-1.0.1 app/views/chaltron/logs/index.html.erb
chaltron-1.0.0 app/views/chaltron/logs/index.html.erb