Sha256: 5de16fe756a1621ecd3b9f605461f6dcfd550cef7a476c3b552da2232aa5622f
Contents?: true
Size: 1.56 KB
Versions: 1
Compression:
Stored size: 1.56 KB
Contents
<!-- Title System --> <% phc_title "Script Licence Manager" %> <% phc_title_tagline "Licence Index" %> <!-- Bread Crumb --> <div class="page-bar"> <ul class="page-breadcrumb"> <li><%= link_to "Script Listings Index", script_listings_path %></li> <li class="active"><%= yield(:phc_title_tagline) %></li> </ul> <!-- Page Title --> <h3 class="page-title"> <%= yield(:phc_title) %> </br> <small><%= yield(:phc_title_tagline) %></small> </h3> </div> <!-- Main Content --> <div class="row"> <div class="col-lg-12"> <table class="table table-striped table-bordered table-advance table-hover"> <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| %> <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> <%= link_to 'New Script Licence', new_script_licence_path, class: "btn btn-primary" %> </div> </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
phcscriptcdnpro-3.3.0 | app/views/phcscriptcdnpro/script/licences/index.html.erb |