Sha256: 87091a2ae2813cae531545843810dfb2d77e8065fcbbcc0a69752cf044218b0a

Contents?: true

Size: 734 Bytes

Versions: 1

Compression:

Stored size: 734 Bytes

Contents

<h2><%= @PAGE_TITLE = "Outputs" %></h2>
<p><%= link_to "Create a new output", new_a_output_path, :class => "btn btn-success" %></p>

<table class="table table-striped">
  <thead>
    <tr>
      <th>Edit</th>
      <th>Code</th>
      <th>Size</th>
      <th>Pre-rendered?</th>
      <th>Rich?</th>
      <th># Rendered</th>
    </tr>
  </thead>
  <tbody>
    <% @outputs.each do |output| %>
      <tr>
        <td><%= link_to "Edit", edit_a_output_path(output), class: "btn" %></td>
        <td><%= output.code %></td>
        <td><%= output.size %></td>
        <td><%= output.prerender? %></td>
        <td><%= output.is_rich? %></td>
        <td><%= output.asset_outputs.count %></td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
asset_host_core-2.0.0.beta app/views/asset_host_core/admin/outputs/index.html.erb