Sha256: 6761166f2b92610ce8023b42a76c213f36e496df820b9bb4231e95fcb162790f

Contents?: true

Size: 1.29 KB

Versions: 8

Compression:

Stored size: 1.29 KB

Contents

<%= provide(:page_title, t("model.Adminpanel::Gallery")) %>
<div class="row-fluid">
  <%=
    link_to(
      content_tag(
        :div,
        content_tag(
          :i,
          nil,
          :class => 'icon-plus-sign icon-2x'
        ) +
        content_tag(
          :span,
          t("gallery.new"),
          nil
        ),
        :class => "btn btn-box span2"
      ),
      new_gallery_path
    )
  %>
</div>

<div class="row-fluid">
  <div class="widget widget-padding span12">
    <div class="widget-header">
          <i class="icon-picture"></i>
          <h5><%= t("model.Adminpanel::Gallery") %></h5>
        </div>
    <div class="widget-body">
      <div class="dataTables_wrapper form-inline">
        <table class="table table-striped table-bordered dataTable">
          <thead>
            <tr>
              <th><%= t("gallery.image") %></th>
              <th><%= t("gallery.position") %></th>
              <th><%= t("gallery.action") %></th>
            </tr>
          </thead>
          <tbody id = "galleries-content">
            <%= render 'galleries_table', :galleries => @galleries %>
          </tbody>
        </table>
        <div class="row-fluid">
          <div class="span6"></div>
          <div class="span6"></div>
        </div>
      </div>
    </div>
  </div>
</div>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
adminpanel-1.2.5 app/views/adminpanel/galleries/index.html.erb
adminpanel-1.2.4 app/views/adminpanel/galleries/index.html.erb
adminpanel-1.2.3 app/views/adminpanel/galleries/index.html.erb
adminpanel-1.2.2 app/views/adminpanel/galleries/index.html.erb
adminpanel-1.2.1 app/views/adminpanel/galleries/index.html.erb
adminpanel-1.2.0 app/views/adminpanel/galleries/index.html.erb
adminpanel-1.1.0 app/views/adminpanel/galleries/index.html.erb
adminpanel-1.0.0 app/views/adminpanel/galleries/index.html.erb