Sha256: 276e55fcbfe980fa00ac15e255e3b31721abed8ef0393816c0c3f5c153f42248
Contents?: true
Size: 1.87 KB
Versions: 21
Compression:
Stored size: 1.87 KB
Contents
<div> <%= link_to_new url_for(controller: ::Common::ClassHelper.controller_underscore(self) , action: 'managing_items_manage', id: @container.id), 'object-type' => @managing_item_class do %> <button class = 'btn btn-success'><%= I18n.t("#{::Common::ClassHelper.controller_to_i18n(self.controller)}.buttons.manage") %></button> <% end %> </div> <div class="row-fluid "> <div class="span12 box gradient "> <div class="title"> <h2> <i class=" icon-bar-chart"></i><span><%= I18n.t("#{::Common::ClassHelper.controller_to_i18n(self.controller)}.items.title_for") %>: <%= link_to_show @container.name, print_property(@container, :show_url), 'object-type' => @managing_container_class %></span> </h2> </div> <!-- End .title --> <div class="content top"> <table id="datatable_example" class="responsive table table-striped table-bordered" style="width:100%;margin-bottom:0; "> <thead> <tr> <th class="no_sort to_hide_phone"> <%= I18n.t(".activerecord.attributes.#{::Common::ClassHelper.class_to_i18n(@managing_item_class)}.name") %> </th> </tr> </thead> <tbody> <% @items.each do |item| %> <tr> <td> <%= print_property(item, :entry_name) %> </td> </tr> <% end %> </tbody> </table> <div class="row-fluid control-group"> <div class="span6"> <%= will_paginate @items, renderer: ChuPaginateLinkRenderer %> </div> </div> </div> <!-- End row-fluid --> </div> <!-- End .content --> </div> <!-- End box -->
Version data entries
21 entries across 21 versions & 1 rubygems