Sha256: 99d9311a7a42216d5a4ab5d978a8277ef3f6481cdbc711b663a09930c13345aa

Contents?: true

Size: 453 Bytes

Versions: 17

Compression:

Stored size: 453 Bytes

Contents

<header>
  <h1>Passkit Logs</h1>
  <%= render 'shared/passkit/navigation' %>
</header>

<main>
    <h2>Last 100 log entries</h2>
    <table>
      <thead>
        <th>Timestamp</th>
        <th>Content</th>
      </thead>
      <tbody>
      <% @logs.each do |log| %>
        <tr>
          <td><%= I18n.l(log.created_at) %></td>
          <td><%= log.content.sub(/^\[.*\]/, '') %></td>
        </tr>
      <% end %>
      </tbody>
    </table>
</main>

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
passkit-0.7.0 app/views/passkit/dashboard/logs/index.html.erb
passkit-0.6.1 app/views/passkit/dashboard/logs/index.html.erb
passkit-0.6.0 app/views/passkit/dashboard/logs/index.html.erb
passkit-0.5.4 app/views/passkit/dashboard/logs/index.html.erb
passkit-0.5.3 app/views/passkit/dashboard/logs/index.html.erb
passkit-0.5.2 app/views/passkit/dashboard/logs/index.html.erb
passkit-0.5.1 app/views/passkit/dashboard/logs/index.html.erb
passkit-0.5.0 app/views/passkit/dashboard/logs/index.html.erb
passkit-0.4.3 app/views/passkit/dashboard/logs/index.html.erb
passkit-0.4.2 app/views/passkit/dashboard/logs/index.html.erb
passkit-0.4.1 app/views/passkit/dashboard/logs/index.html.erb
passkit-0.4.0 app/views/passkit/dashboard/logs/index.html.erb
passkit-0.3.3 app/views/passkit/logs/index.html.erb
passkit-0.3.2 app/views/passkit/logs/index.html.erb
passkit-0.3.1 app/views/passkit/logs/index.html.erb
passkit-0.3.0 app/views/passkit/logs/index.html.erb
passkit-0.2.0 app/views/passkit/logs/index.html.erb