Sha256: b16eaaba36822502fd17e0de5cc187825aa26f219475e3fcf99d64095e001dc4

Contents?: true

Size: 1020 Bytes

Versions: 4

Compression:

Stored size: 1020 Bytes

Contents

<%= render layout: "/layouts/#{Rails.application.config.apidae_layout}" do |styles| %>
    <div id="apidae_header" class="<%= styles[:header] %>">
      <h1 class="<%= styles[:h1] %>">Apidae - Sélections</h1>
    </div>
    <div id="apidae_dashboard" class="<%= styles[:wrapper] %>">
      <div id="apidae_imports_panel" class="<%= styles[:body] %>">
        <table id="apidae_selections" class="<%= styles[:table] %>">
          <thead>
          <tr>
            <th>Label</th>
            <th>Reference</th>
            <th>Identifiant</th>
            <th>Nombre d'objets</th>
          </tr>
          </thead>

          <tbody>
          <% @selections.each do |selection| %>
              <tr>
                <td><%= selection.label %></td>
                <td><%= selection.reference %></td>
                <td><%= selection.apidae_id %></td>
                <td><%= selection.objects.count %></td>
              </tr>
          <% end %>
          </tbody>
        </table>
      </div>
    </div>
<% end %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
apidae-0.1.6 app/views/apidae/selections/index.html.erb
apidae-0.1.5 app/views/apidae/selections/index.html.erb
apidae-0.1.4 app/views/apidae/selections/index.html.erb
apidae-0.1.3 app/views/apidae/selections/index.html.erb