Sha256: fa7785541da6dc323085729b1b52e62ee7bd1358bcffb580b8432084aba735ae

Contents?: true

Size: 938 Bytes

Versions: 3

Compression:

Stored size: 938 Bytes

Contents

<div class="row">
  <div class="col-md-8">
    <h4>Cadastro de vídeos</h4>

    <% if can? :create, WebAdmin::Video %>
      <div class="row">
        <div class="col-md-12"><%= link_to 'Novo', new_video_path, class: 'btn btn-primary link-new' %></div>
      </div>
    <% end %>

    <div class="table-responsive">
      <table class="table table-hover">
        <thead>
          <tr>
            <td>Descrição</td>
            <td>Link</td>
            <td>Criado em</td>
          </tr>
        </thead>

        <tbody>
          <% @videos.each do |video| %>
            <tr>
              <td><%= link_to video.description, edit_video_path(video) %></td>
              <td><%= video.link %></td>
              <td><%= I18n.l video.created_at, format: :only_date %></td>
            </tr>
          <% end %>
        </tbody>
      </table>
    </div>
  </div>

  <div class="col-md-4 box">
    <h4>Pesquisa</h4>
  </div>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
web_admin-0.1.0 app/views/web_admin/videos/index.html.erb
web_admin-0.0.2 app/views/web_admin/videos/index.html.erb
web_admin-0.0.1 app/views/web_admin/videos/index.html.erb