Sha256: d475a921bebb8540b16763acc4891c2bd94ba08dadcbe25ba442dfc8e59b0e0c
Contents?: true
Size: 1.59 KB
Versions: 9
Compression:
Stored size: 1.59 KB
Contents
<!-- Title System --> <% phc_title "Script Listings Manager" %> <% phc_title_tagline "Author Index" %> <% phc_breadcrumb_one yield(:phc_title_tagline) %> <!-- Title System --> <!-- Page Content --> <div class="panel panel-inverse"> <div class="panel-heading"> <div class="panel-heading-btn"> <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-default" data-click="panel-expand"><i class="fa fa-expand"></i></a> <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-success" data-click="panel-reload"><i class="fa fa-redo"></i></a> <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-warning" data-click="panel-collapse"><i class="fa fa-minus"></i></a> </div> <h4 class="panel-title"><%= yield(:phc_title_tagline) %></h4> </div> <div class="panel-body"> <!-- Table - Article Index --> <div class="table-responsive"> <table class="table table-striped table-bordered"> <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> </div> <!-- Page Content -->
Version data entries
9 entries across 9 versions & 1 rubygems