Sha256: e1b816c0a5709203c82931ad6bfc4fe1eec8b059ae72cb39220e3fc675a59733
Contents?: true
Size: 1.36 KB
Versions: 2
Compression:
Stored size: 1.36 KB
Contents
<!-- Title System --> <% phc_title "Script - Author" %> <% phc_title_tagline "New Script Author" %> <!-- Bread Crumb --> <div class="page-bar"> <ul class="page-breadcrumb"> <li><%= link_to "Script Versions", scriptcdn_main_aauthors_path %><i class="fa fa-circle"></i></li> <li class="active"><%= yield(:phc_title_tagline) %></li> </ul> </div> <!-- Main Content --> <div class="row"> <div class="col-lg-12"> <div class="portlet light"> <div class="portlet-title"> <div class="caption"> <span class="caption-subject bold uppercase"><%= yield(:phc_title_tagline) %></span> </div> <div class="actions"> <%= link_to new_scriptcdn_main_author_path, class: "btn blue-chambray" do %> <i class="fa fa-plus"></i> Add a New Script Author <% end %> </div> </div> <div class="portlet-body"> <div class="table-responsive"> <table class="table table-striped table-bordered table-hover table-header-fixed"> <thead> <tr> <th>Firstname</th> <th>Lastname</th> <th>Script</th> </tr> </thead> <tbody> <% @scriptcdn_authors.each do |scriptcdn_author| %> <tr> <td><%= scriptcdn_author.firstname %></td> <td><%= scriptcdn_author.lastname %></td> </tr> <% end %> </tbody> </table> </div> </div> </div> </div> </div>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
phcscriptcdnpro-1.5.1 | app/views/phcscriptcdnpro/scriptcdn/authors/index.html.erb |
phcscriptcdnpro-1.5.0 | app/views/phcscriptcdnpro/scriptcdn/authors/index.html.erb |