Sha256: 5e08f05aae543efe774213e486caa4bc4d586b466b4c148c1e75f7c7cdbd61f1
Contents?: true
Size: 1.91 KB
Versions: 2
Compression:
Stored size: 1.91 KB
Contents
<!-- Title System --> <% phc_title "Script Listings Manager" %> <% phc_title_tagline "Script Extension Index" %> <!-- Title System --> <!-- Page Header --> <div class="row wrapper border-bottom white-bg page-heading"> <div class="col-sm-4"> <!-- Page Title --> <h2><%= yield(:phc_title) %></h2> <!-- Page Title --> <!-- Bread Crumb --> <ol class="breadcrumb"> <li class="active"><%= yield(:phc_title_tagline) %></li> </ol> <!-- Bread Crumb --> </div> <div class="col-sm-8"> <!-- New Script Extensions --> <div class="title-action"> <%= link_to phcscriptcdnpro.new_script_extension_path, class: "btn btn-primary" do %> <i class="fa fa-plus"></i> Add a New Script Extension <% end %> </div> <!-- New Script Extensions --> </div> </div> <!-- Page Header --> <!-- Page Content --> <div class="wrapper wrapper-content animated fadeInRight"> <div class="row"> <div class="col-lg-12"> <div class="ibox float-e-margins"> <div class="ibox-title"> <h5><%= yield(:phc_title_tagline) %></h5> <div class="ibox-tools"> <a class="collapse-link"> <i class="fa fa-chevron-up"></i> </a> <a class="close-link"> <i class="fa fa-times"></i> </a> </div> </div> <div class="ibox-content"> <div class="table-responsive"> <table class="table table-striped table-bordered table-hover dataTables-example"> <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> </div> </div> </div> </div> </div> <!-- Page Content -->
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
phcscriptcdnpro-5.8.6 | app/views/phcscriptcdnpro/script/extensions/index.html.erb |
phcscriptcdnpro-5.8.5 | app/views/phcscriptcdnpro/script/extensions/index.html.erb |