Sha256: eb65c341f45343fe7741b3306ce5b107c22371a4b796d0e9e9f01c3eb071ff16
Contents?: true
Size: 1.24 KB
Versions: 7
Compression:
Stored size: 1.24 KB
Contents
<!-- Title System --> <% phc_title "Script Listings Manager" %> <% phc_title_tagline "Script Extension Index" %> <!-- Title System --> <!-- Page Header --> <div class="row"> <div class="col-lg-12"> <!-- Bread Crumbs --> <ol class="breadcrumb"> <li class="active"><%= yield(:phc_title_tagline) %></li> </ol> <!-- Bread Crumbs --> <!-- Page Title --> <h3 class="page-title"> <%= yield(:phc_title) %> </br> <small><%= yield(:phc_title_tagline) %></small> </h3> <!-- Page Title --> </div> </div> <!-- Page Header --> <!-- Main Content --> <div class="row"> <div class="col-lg-12"> <!-- 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> <!-- Main Content -->
Version data entries
7 entries across 7 versions & 1 rubygems