Sha256: 628e295142eb16822878512e6415f2b3e53f9d560ad1af5cd6cefb514611abd4
Contents?: true
Size: 1.69 KB
Versions: 61
Compression:
Stored size: 1.69 KB
Contents
<!-- Title System --> <% phc_title "Script Listings Manager" %> <% phc_title_tagline "Script Extension Index" %> <% phc_breadcrumb_one yield(:phc_title_tagline) %> <!-- Title System --> <!-- Page Title Bar --> <section class="content-header"> <!-- Page Title and BreadCrumb --> <h1><%= yield(:phc_title) %> <small><%= yield(:phc_title_tagline) %></small></h1> <ol class="breadcrumb"> <li><%= yield(:phc_breadcrumb_one) %></li> <li class="active"><%= yield(:phc_breadcrumb_two) %></li> </ol> <!-- Page Title and BreadCrumb --> </section> <!-- Page Title Bar --> <!-- Main Content --> <section class="content"> <div class="row"> <div class="col-lg-12"> <div class="box"> <div class="box-header with-border"> <h3 class="box-title"><%= yield(:phc_title) %></h3> </div> <div class="box-body"> <!-- Index Table --> <div class="table-responsive"> <table class="table table-bordered table-striped table-hover"> <thead> <tr> <th>Script Extension Name</th> <th>Script Extension</th> </tr> </thead> <tbody> <% @script_extensions.each do |script_extension| %> <tr> <td><%= link_to script_extension.scriptextensionname, script_extension %></td> <td><%= link_to script_extension.scriptextension, script_extension %></td> </tr> <% end %> </tbody> </table> </div> <!-- Index Table --> <!-- Panel Footer --> <div class="box-footer clearfix"> <%= link_to 'New Script Extension', new_script_extension_path, class: "btn btn-primary" %> </div> <!-- Panel Footer --> </div> </div> </div> </div> </section> <!-- Main Content -->
Version data entries
61 entries across 61 versions & 1 rubygems