Sha256: c35e4fd55a1f7b2e93a5f539b228d0332a72e94eb69d18588d27f70bb2e02fda
Contents?: true
Size: 1.54 KB
Versions: 8
Compression:
Stored size: 1.54 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"> <!-- Table Index --> <table class="table table-striped table-bordered table-advance 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> <!-- Table Index --> <%= link_to 'New Script Extension', new_script_extension_path, class: "btn btn-primary" %> </div> </div> </div> </div> </section> <!-- Main Content -->
Version data entries
8 entries across 8 versions & 1 rubygems