Sha256: 5d772378203eaf82cedbbc7586c2693150229c4bde5d3b97274b78ccdb976963
Contents?: true
Size: 1.47 KB
Versions: 7
Compression:
Stored size: 1.47 KB
Contents
<!-- Title System --> <% phc_title "Script Listings Manager" %> <% phc_title_tagline "Author Index" %> <!-- Title System --> <!-- Page Header --> <div class="row"> <div class="col-lg-12"> <!-- Bread Crumbs --> <ol class="breadcrumb"> <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 Index --> <table class="table table-striped table-bordered table-advance table-hover"> <thead> <tr> <th>First Name</th> <th>Last Name</th> <th>Website</th> <th>Github</th> <th>Twitter</th> </tr> </thead> <tbody> <% @script_authors.each do |script_author| %> <tr> <td><%= link_to script_author.authorfirstname, script_author %></td> <td><%= link_to script_author.authorlastname, script_author %></td> <td><%= link_to script_author.authorwebsite, script_author %></td> <td><%= link_to script_author.authorgithub, script_author %></td> <td><%= link_to script_author.authortwitter, script_author %></td> </tr> <% end %> </tbody> </table> <!-- Table Index --> <%= link_to 'New Script Author', new_script_listing_author_path, class: "btn btn-primary" %> </div> </div> <!-- Main Content -->
Version data entries
7 entries across 7 versions & 1 rubygems