app/views/phcscriptcdnpro/script/licences/index.html.erb in phcscriptcdnpro-4.6.1 vs app/views/phcscriptcdnpro/script/licences/index.html.erb in phcscriptcdnpro-4.6.2
- old
+ new
@@ -1,79 +1,83 @@
<!-- Title System -->
-<% phc_title "Script Licence Manager" %>
-<% phc_title_tagline "Licence Index" %>
+<% phc_title "Script Listing Manager" %>
+<% phc_title_tagline "Script Version Index" %>
+<!-- Title System -->
-<!-- Bread Crumb -->
-<div class="page-bar">
-
- <ul class="page-breadcrumb">
- <li><%= link_to "Script Listings Index", script_listings_path %> <i class="fa fa-circle"></i></li>
- <li class="active"><%= yield(:phc_title_tagline) %> <i class="fa fa-circle"></i></li>
- </ul>
-
+<!-- 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 "Script Listing Index", phcscriptcdnpro.script_listings_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_licence_path, class: "btn btn-primary" do %>
+ <i class="fa fa-plus"></i> Create a New Script Licence
+ <% end %>
+ </div>
+ </div>
</div>
+<!-- Page Header -->
-<!-- Page Title -->
-<h3 class="page-title">
- <%= yield(:phc_title) %> </br>
- <small><%= yield(:phc_title_tagline) %></small>
-</h3>
+<!-- Page Content -->
+<div class="wrapper wrapper-content animated fadeInRight">
-<!-- Main Content -->
-<div class="row">
- <div class="col-lg-12">
+ <div class="row">
+ <div class="col-lg-12">
- <div class="portlet light">
+ <div class="ibox float-e-margins">
- <div class="portlet-title">
-
- <div class="caption">
- <span class="caption-subject bold uppercase"><%= yield(:phc_title_tagline) %></span>
+ <div class="ibox-title">
+ <h5><%= yield(:phc_title_tagline) %></h5>
+ <div class="ibox-tools">
+ <a class="collapse-link">
+ <i class="fa fa-chevron-up"></i>
+ </a>
+ <a class="close-link">
+ <i class="fa fa-times"></i>
+ </a>
+ </div>
</div>
- <div class="actions">
- <%= link_to phcscriptcdnpro.new_script_licence_path, class: "btn blue-chambray" do %>
- <i class="fa fa-plus"></i> Add New Software Licence
- <% 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>Licence Name</th>
- <th>GPLv3 Compatible</th>
- <th>FSF Approval</th>
- <th>OSI Approval</th>
- <th>CopyFree Approval</th>
- <th>Debian Approval</th>
- <th>Fedora Approval</th>
- </tr>
- </thead>
-
- <tbody>
- <% @script_licences.each do |script_licence| %>
+ <div class="ibox-content">
+ <div class="table-responsive">
+ <table class="table table-striped table-bordered table-hover dataTables-example">
+ <thead>
<tr>
- <td><%= link_to script_licence.lcncname, script_licence %></td>
- <td><%= link_to script_licence.lcnccomgpl, script_licence %></td>
- <td><%= link_to script_licence.lcncarvlfsf, script_licence %></td>
- <td><%= link_to script_licence.lcncarvlosi, script_licence %></td>
- <td><%= link_to script_licence.lcncarvlcopyfree, script_licence %></td>
- <td><%= link_to script_licence.lcncarvldebian, script_licence %></td>
- <td><%= link_to script_licence.lcncarvlfedora, script_licence %></td>
+ <th>Licence Name</th>
+ <th>GPLv3 Compatible</th>
+ <th>FSF Approval</th>
+ <th>OSI Approval</th>
+ <th>CopyFree Approval</th>
+ <th>Debian Approval</th>
+ <th>Fedora Approval</th>
</tr>
- <% end %>
- </tbody>
-
- </table>
-
+ </thead>
+ <tbody>
+ <% @script_licences.each do |script_licence| %>
+ <tr>
+ <td><%= link_to script_licence.lcncname, script_licence %></td>
+ <td><%= link_to script_licence.lcnccomgpl, script_licence %></td>
+ <td><%= link_to script_licence.lcncarvlfsf, script_licence %></td>
+ <td><%= link_to script_licence.lcncarvlosi, script_licence %></td>
+ <td><%= link_to script_licence.lcncarvlcopyfree, script_licence %></td>
+ <td><%= link_to script_licence.lcncarvldebian, script_licence %></td>
+ <td><%= link_to script_licence.lcncarvlfedora, script_licence %></td>
+ </tr>
+ <% end %>
+ </tbody>
+ </table>
+ </div>
</div>
+
</div>
</div>
-
</div>
+
</div>
+<!-- Page Content -->