Sha256: 4c948424e46b33cb6e8a31900a2963934b64e8540d4b5dd64cf42035f44e8f19
Contents?: true
Size: 1.96 KB
Versions: 57
Compression:
Stored size: 1.96 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 Listings", phcscriptcdnpro.scriptcdn_mains_path %><i class="fa fa-circle"></i></li> <li><%= link_to "Script Versions", phcscriptcdnpro.scriptcdn_main_authors_path %><i class="fa fa-circle"></i></li> <li class="active"><%= yield(:phc_title_tagline) %></li> </ul> </div> <!-- Page Title --> <h3 class="page-title"> <%= yield(:phc_title) %> </br> <small><%= yield(:phc_title_tagline) %></small> </h3> <!-- 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></th> </tr> </thead> <tbody> <% @scriptcdn_authors.each do |scriptcdn_author| %> <tr> <td><%= link_to scriptcdn_author.authorfirstname, edit_scriptcdn_main_author_path(scriptcdn_author.main, scriptcdn_author) %></td> <td><%= link_to scriptcdn_author.authorlastname, edit_scriptcdn_main_author_path(scriptcdn_author.main, scriptcdn_author) %></td> <td><%= link_to 'Destroy', scriptcdn_main_author_path(scriptcdn_author.main, scriptcdn_author), method: :delete, data: { confirm: 'Are you sure?' }, class: "btn red-mint" %></td> </tr> <% end %> </tbody> </table> </div> </div> </div> </div> </div>
Version data entries
57 entries across 57 versions & 1 rubygems