Sha256: 598047b25f7c1a3a7d50016e36f584b0d149f833adfca5b030469c38e7b8f39a
Contents?: true
Size: 1.44 KB
Versions: 7
Compression:
Stored size: 1.44 KB
Contents
<!-- Title System --> <% phc_title "Script Listings Manager" %> <% phc_title_tagline "Script URL Index" %> <!-- Title System --> <!-- Page Header --> <div class="row"> <div class="col-lg-12"> <!-- Bread Crumbs --> <ol class="breadcrumb"> <li><%= link_to "Script Listing Index", phcscriptcdn.script_listings_path %></li> <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 class="table table-striped table-bordered table-advance table-hover"> <thead> <tr> <th>Script URL</th> <th>Release Date</th> <th>CDN Update Date</th> </tr> </thead> <tbody> <% @script_urls.each do |script_url| %> <tr> <td><%= link_to script_url.scripturl, script_listing_url_path(script_url.listing, script_url) %></td> <td><%= link_to script_url.scripturlrelease, script_listing_url_path(script_url.listing, script_url) %></td> <td><%= link_to script_url.scripturlcdnupdate, script_listing_url_path(script_url.listing, script_url) %></td> </tr> <% end %> </tbody> </table> <%= link_to 'New Script Url', new_script_listing_url_path, class: "btn btn-primary" %> </div> </div> <!-- Main Content -->
Version data entries
7 entries across 7 versions & 1 rubygems