Sha256: 0b1e4a7e1103eaa5fdda84d17fa70ac5d7d3fe3998646ea7a28cb64c38b9afd5

Contents?: true

Size: 1.02 KB

Versions: 27

Compression:

Stored size: 1.02 KB

Contents

<% provide(:title, 'Sources') %>

<div class="next-grid">
  <div class="next-grid__cell">
    <div class="next-card">
      <% unless @sources.empty? %>
          <table class="table">
            <thead>
            <tr>
              <th>Source</th>
              <th>Source (Full name)</th>
              <th></th>
            </tr>
            </thead>
            <tbody>
            <% @sources.each do |source| %>
                <tr>
                  <td><%= link_to(source.name, edit_admin_source_path(source)) %></td>
                  <td><%= source.source %></td>
                  <td><%= source.name %></td>
                  <td><%= link_to 'Delete', admin_source_path(source), action: 'destroy', method: :delete,  data: {confirm: "About to delete the source: #{source.source}. Are you sure?"} %></td>
                </tr>
            <% end %>
            </tbody>
          </table>
      <% end %>
    </div>
    <hr/>
    <%= link_to 'Create new source', new_admin_source_path, { class: 'btn btn-primary' } %>
  </div>
</div>

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
disco_app-0.14.3 app/views/disco_app/admin/sources/index.html.erb
disco_app-0.16.1 app/views/disco_app/admin/sources/index.html.erb
disco_app-0.15.2 app/views/disco_app/admin/sources/index.html.erb
disco_app-0.18.4 app/views/disco_app/admin/sources/index.html.erb
disco_app-0.18.1 app/views/disco_app/admin/sources/index.html.erb
disco_app-0.14.0 app/views/disco_app/admin/sources/index.html.erb
disco_app-0.13.6.pre.puma.pre.3 app/views/disco_app/admin/sources/index.html.erb