Sha256: 37856d9c1b90f4023bd6a77a317c499f66e7009f41249e4d480f24424dde5695

Contents?: true

Size: 1.26 KB

Versions: 7

Compression:

Stored size: 1.26 KB

Contents

<%= provide(:page_title, t("model.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.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

7 entries across 7 versions & 1 rubygems

Version Path
adminpanel-1.2.12 app/views/adminpanel/galleries/index.html.erb
adminpanel-1.2.11 app/views/adminpanel/galleries/index.html.erb
adminpanel-1.2.10 app/views/adminpanel/galleries/index.html.erb
adminpanel-1.2.9 app/views/adminpanel/galleries/index.html.erb
adminpanel-1.2.8 app/views/adminpanel/galleries/index.html.erb
adminpanel-1.2.7 app/views/adminpanel/galleries/index.html.erb
adminpanel-1.2.6 app/views/adminpanel/galleries/index.html.erb