app/views/phcscriptcdnpro/script/authors/index.html.erb in phcscriptcdnpro-5.0.3 vs app/views/phcscriptcdnpro/script/authors/index.html.erb in phcscriptcdnpro-5.1.0
- old
+ new
@@ -1,34 +1,34 @@
<!-- Title System -->
-<% phc_title "Script Listing Manager" %>
+<% phc_title "Script Listings Manager" %>
<% phc_title_tagline "Script Author Index" %>
<!-- Title System -->
<!-- Page Header -->
<div class="row wrapper border-bottom white-bg page-heading">
<div class="col-sm-4">
<h2><%= yield(:phc_title) %></h2>
<!-- Bread Crumb -->
<ol class="breadcrumb">
- <li><%= link_to "Author Index", phcscriptcdnpro.script_authors_path %></li>
<li class="active"><%= yield(:phc_title_tagline) %></li>
</ol>
</div>
<div class="col-sm-8">
<div class="title-action">
<%= link_to phcscriptcdnpro.new_script_author_path, class: "btn btn-primary" do %>
- <i class="fa fa-plus"></i> Add a Script Author
+ <i class="fa fa-plus"></i> Add a New Author
<% end %>
</div>
</div>
</div>
<!-- Page Header -->
<!-- Page Content -->
<div class="wrapper wrapper-content animated fadeInRight">
<div class="row">
<div class="col-lg-12">
+
<div class="ibox float-e-margins">
<div class="ibox-title">
<h5><%= yield(:phc_title_tagline) %></h5>
<div class="ibox-tools">
<a class="collapse-link">
@@ -39,18 +39,19 @@
</a>
</div>
</div>
<div class="ibox-content">
<div class="table-responsive">
+
<table class="table table-striped table-bordered table-hover dataTables-example">
<thead>
<tr>
- <th>Author Firstname</th>
- <th>Author Lastname</th>
- <th>Author Website</th>
- <th>Author Github</th>
- <th>Author Twitter</th>
+ <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>
@@ -61,12 +62,14 @@
<td><%= link_to script_author.authortwitter, script_author %></td>
</tr>
<% end %>
</tbody>
</table>
+
</div>
</div>
</div>
+
</div>
</div>
</div>
<!-- Page Content -->