Sha256: 054235f13a905e052d454dbb2615a696173ca02dd2a221aeed9d5129e5746b5d
Contents?: true
Size: 1.54 KB
Versions: 5
Compression:
Stored size: 1.54 KB
Contents
<!-- Title System --> <% phc_title "Script Listings Manager" %> <% phc_title_tagline "Script Version 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 Version</th> </tr> </thead> <tbody> <% @script_versions.each do |script_version| %> <tr> <td><%= link_to script_version.scriptversion, script_version %></td> </tr> <% end %> </tbody> </table> </div> <!-- Index Table --> <!-- Panel Footer --> <div class="box-footer clearfix"> <%= link_to 'New Script Version', new_script_version_path, class: "btn btn-primary" %> </div> <!-- Panel Footer --> </div> </div> </div> </div> </section> <!-- Main Content -->
Version data entries
5 entries across 5 versions & 1 rubygems