Sha256: 5436259d489196507546a86e011dc2c77b52340e06aca46ff7859f2d2cfe36f0

Contents?: true

Size: 1.19 KB

Versions: 11

Compression:

Stored size: 1.19 KB

Contents

<%= provide(:page_title, "Secciones") %>

<div class="row-fluid">
  <div class="widget widget-padding span12">
    <div class="widget-header">
          <i class="icon-tasks"></i>
          <h5>Secciones</h5>
        </div>
    <div class="widget-body">
      <div class="dataTables_wrapper form-inline">
        <table id="information-table" class="table table-striped table-bordered dataTable">
          <thead>
            <tr>
              <th>Nombre</th>
              <th>Descripción</th>
              <th>Acción</th>
            </tr>
          </thead>
          <tbody>
            <% @sections.each do |section| %>
            <tr>
              <td><%= link_to section.name, section_path(section) %></td>
              <td><%= strip_tags section.description %></td>
              <td>
                <%= link_to content_tag(:i, nil, :class => 'icon-pencil'), edit_section_path(section), :title => "Editar" %>
              </td>
            </tr>
            <% end %>
          </tbody>
        </table>
        <div class="row-fluid">
          <div class="span6"></div>
          <div class="span6"></div>
        </div>
      </div>
    </div>
  </div>
</div>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
adminpanel-0.1.0cl.2 app/views/adminpanel/sections/index.html.erb
adminpanel-0.1.0cl app/views/adminpanel/sections/index.html.erb
adminpanel-0.1.0 app/views/adminpanel/sections/index.html.erb
adminpanel-0.0.7 app/views/adminpanel/sections/index.html.erb
adminpanel-0.0.6.1 app/views/adminpanel/sections/index.html.erb
adminpanel-0.0.6 app/views/adminpanel/sections/index.html.erb
adminpanel-0.0.5 app/views/adminpanel/sections/index.html.erb
adminpanel-0.0.4 app/views/adminpanel/sections/index.html.erb
adminpanel-0.0.3 app/views/adminpanel/sections/index.html.erb
adminpanel-0.0.2 app/views/adminpanel/sections/index.html.erb
adminpanel-0.0.1 app/views/adminpanel/sections/index.html.erb