Sha256: 0cda82df15bdff0570adf210e1c0d1736f973c13915b961159bd0dff7e846ae5
Contents?: true
Size: 1.93 KB
Versions: 5
Compression:
Stored size: 1.93 KB
Contents
<!-- Title System --> <% phc_title "Script Listings Manager" %> <% phc_title_tagline "Author 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>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> </div> <!-- Index Table --> <!-- Panel Footer --> <div class="box-footer clearfix"> <%= link_to 'New Script Author', new_script_author_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