Sha256: a95815957def99ee59f834be8cb7042731779e62f4b5b20965b68fbe093a2234
Contents?: true
Size: 1.67 KB
Versions: 27
Compression:
Stored size: 1.67 KB
Contents
<!-- Title System --> <% phc_title "Script Authors" %> <% phc_title_tagline "Script Author Index" %> <!-- Page Header --> <div class="row"> <div class="col-lg-12"> <!-- Bread Crumbs --> <ol class="breadcrumb"> <li><%= link_to "Script Author Index", script_listing_authors_path %></li> <li class="active"><%= yield(:phc_title_tagline) %></li> </ol> <!-- Page Title --> <h3 class="page-title"> <%= yield(:phc_title) %> </br> <small><%= yield(:phc_title_tagline) %></small> </h3> </div> </div> <!-- Main Content --> <div class="row"> <div class="col-lg-12"> <table class="table table-striped table-bordered table-advance table-hover"> <thead> <tr> <th>Author Firstname</th> <th>Author Lastname</th> <th>Author Website</th> <th>Author Github</th> <th>Author Twitter</th> </tr> </thead> <tbody> <% @script_authors.each do |script_author| %> <tr> <td><%= link_to script_author.authorfirstname, script_listing_author_path(script_author.listing, script_author) %></td> <td><%= link_to script_author.authorlastname, script_listing_author_path(script_author.listing, script_author) %></td> <td><%= link_to script_author.authorwebsite, script_listing_author_path(script_author.listing, script_author) %></td> <td><%= link_to script_author.authorgithub, script_listing_author_path(script_author.listing, script_author) %></td> <td><%= link_to script_author.authortwitter, script_listing_author_path(script_author.listing, script_author) %></td> </tr> <% end %> </tbody> </table> <%= link_to 'New Script Author', new_script_listing_author_path, class: "btn btn-primary" %> </div> </div>
Version data entries
27 entries across 27 versions & 2 rubygems