app/views/phcscriptcdnpro/script/listings/index.html.erb in phcscriptcdnpro-4.5.3 vs app/views/phcscriptcdnpro/script/listings/index.html.erb in phcscriptcdnpro-4.5.4

- old
+ new

@@ -1,73 +1,76 @@ <!-- Title System --> <% phc_title "Script Listing Manager" %> -<% phc_title_tagline "Create a New Script Listing" %> +<% phc_title_tagline "Script Listing Index" %> +<!-- Title System --> -<!-- Bread Crumb --> -<div class="page-bar"> - - <ul class="page-breadcrumb"> - <li><%= link_to "Script Listings Index", script_listings_path %> <i class="fa fa-circle"></i></li> - <li class="active"><%= yield(:phc_title_tagline) %> </li> - </ul> - +<!-- Page Header --> +<div class="row wrapper border-bottom white-bg page-heading"> + <div class="col-sm-4"> + <h2><%= yield(:phc_title) %></h2> + <!-- Bread Crumb --> + <ol class="breadcrumb"> + <li class="active"><%= yield(:phc_title_tagline) %></li> + </ol> + </div> + <div class="col-sm-8"> + <div class="title-action"> + <%= link_to phcscriptcdnpro.script_listings_path, class: "btn btn-primary" do %> + <i class="fa fa-plus"></i> Back to Script Listing Index + <% end %> + </div> + </div> </div> +<!-- Page Header --> -<!-- Page Title --> -<h3 class="page-title"> - <%= yield(:phc_title) %> </br> - <small><%= yield(:phc_title_tagline) %></small> -</h3> - -<!-- Main Content --> -<div class="row"> - <div class="col-lg-12"> +<!-- Page Content --> +<div class="wrapper wrapper-content animated fadeInRight"> - <div class="portlet light"> + <div class="row"> + <div class="col-lg-12"> - <div class="portlet-title"> + <div class="ibox float-e-margins"> - <div class="caption"> - <span class="caption-subject bold uppercase"><%= yield(:phc_title_tagline) %></span> + <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="actions"> - <%= link_to phcscriptcdnpro.new_script_listing_path, class: "btn blue-chambray" do %> - <i class="fa fa-plus"></i> Add New CDN Listing - <% end %> - </div> - </div> - - <div class="portlet-body"> - - <div class="table-responsive"> - - <table class="table table-bordered table-striped table-hover"> - <thead> - <tr> - <th>Title</th> - <th>Release Date</th> - <th>Latest Release Date</th> - <th>Beta Release Date</th> - </tr> - </thead> - - <tbody> - <% @script_listings.each do |script_listing| %> + <div class="ibox-content"> + <div class="table-responsive"> + <table class="table table-striped table-bordered table-hover dataTables-example"> + <thead> <tr> - <td class="vert-align"><%= link_to script_listing.scripttitle, script_listing_path(script_listing) %></td> - <td class="vert-align"><%= link_to script_listing.scriptinitialrelease, script_listing_path(script_listing) %></td> - <td class="vert-align"><%= link_to script_listing.scriptlastestrelease, script_listing_path(script_listing) %></td> - <td class="vert-align"><%= link_to script_listing.scriptbetarelease, script_listing_path(script_listing) %></td> + <th>Title</th> + <th>Release Date</th> + <th>Latest Release Date</th> + <th>Beta Release Date</th> </tr> - <% end %> - </tbody> - </table> - + </thead> + <tbody> + <% @script_listings.each do |script_listing| %> + <tr> + <td class="vert-align"><%= link_to script_listing.scripttitle, script_listing_path(script_listing) %></td> + <td class="vert-align"><%= link_to script_listing.scriptinitialrelease, script_listing_path(script_listing) %></td> + <td class="vert-align"><%= link_to script_listing.scriptlastestrelease, script_listing_path(script_listing) %></td> + <td class="vert-align"><%= link_to script_listing.scriptbetarelease, script_listing_path(script_listing) %></td> + </tr> + <% end %> + </tbody> + </table> + </div> </div> </div> </div> - </div> + </div> +<!-- Page Content -->