Sha256: 0a2cde03f87a208d56eee587f3b2324b683a8ffbcdf1129dc2066288507a6262

Contents?: true

Size: 655 Bytes

Versions: 1

Compression:

Stored size: 655 Bytes

Contents

<h2 class='float-left'>Tasks</h2>
<%= render 'admin/shared/nav' %>

<div class='clearfix'></div>
<hr/>

<table class="table table-bordered">
  <thead class="table-active">
          <th>ID</th>
          <th>Title</th>
          <th>Content</th>
          <th>Created On</th>
        </thead>
        <tbody>
          <% @tasks.each do |task| %>
            <tr>
              <td><%= task.id %></td>
              <td><%= task.title %></td>
              <td><%= task.content %></td>
              <td><%= task.created_at.strftime("%d %b. %Y") %></td>
            </tr>
          <% end %>
        </tbody>
      </table>
    </div>
  </div>
</div>
<br>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
blast_tasks-0.0.1 app/views/blast/admin/tasks/index.html.erb