Sha256: cafcd921e9f22d619659515eb4ea245a36ad8293bc20532c82242a0e62b3dde4

Contents?: true

Size: 885 Bytes

Versions: 10

Compression:

Stored size: 885 Bytes

Contents

<h1>Layouts</h1>
<table class="table table-striped">
  <thead>
    <tr>
      <th>Path</th>
      <th>Format</th>
      <th>Locale</th>
      <th>Handler</th>
      <th>Actions</th>
    </tr>
  </thead>
  <tbody>
    <% @layouts.each do |layout| %>
      <tr>
        <td><%= layout.path %></td>
        <td><%= layout.format %></td>
        <td><%= layout.locale %></td>
        <td><%= layout.handler %></td>
        <td>
          <%= link_to 'Edit', kuztuscms.edit_layout_path(layout), :class => 'btn btn-mini' %>
          <%= link_to 'Destroy', 
            kuztuscms.layout_path(layout),
            :method => :delete,
            :confirm => 'Are you sure?',
            :class => 'btn btn-mini btn-danger' if layout.path != 'default' %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>

<%= link_to 'New', kuztuscms.new_layout_path, :class => 'btn btn-primary' %>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
kuztuscms-0.0.10 app/views/kuztuscms/layouts/index.html.erb
kuztuscms-0.0.9 app/views/kuztuscms/layouts/index.html.erb
kuztuscms-0.0.8 app/views/kuztuscms/layouts/index.html.erb
kuztuscms-0.0.7 app/views/kuztuscms/layouts/index.html.erb
kuztuscms-0.0.6 app/views/kuztuscms/layouts/index.html.erb
kuztuscms-0.0.5 app/views/kuztuscms/layouts/index.html.erb
kuztuscms-0.0.4 app/views/kuztuscms/layouts/index.html.erb
kuztuscms-0.0.3 app/views/kuztuscms/layouts/index.html.erb
kuztuscms-0.0.2 app/views/kuztuscms/layouts/index.html.erb
kuztuscms-0.0.1 app/views/kuztuscms/layouts/index.html.erb