Sha256: a83acd104833dcfb737b41cf79c14be9dc41a162a14d5662a11289d6cfe2447e
Contents?: true
Size: 1.85 KB
Versions: 9
Compression:
Stored size: 1.85 KB
Contents
<!-- Title System --> <% phc_title "Script Listings Manager" %> <% phc_title_tagline "Script Licence Index" %> <% phc_breadcrumb_one yield(:phc_title_tagline) %> <!-- Title System --> <!-- Page Content --> <div class="panel panel-inverse"> <div class="panel-heading"> <div class="panel-heading-btn"> <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-default" data-click="panel-expand"><i class="fa fa-expand"></i></a> <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-success" data-click="panel-reload"><i class="fa fa-redo"></i></a> <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-warning" data-click="panel-collapse"><i class="fa fa-minus"></i></a> </div> <h4 class="panel-title"><%= yield(:phc_title_tagline) %></h4> </div> <div class="panel-body"> <!-- Table - Article Index --> <div class="table-responsive"> <table class="table table-striped table-bordered"> <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> </div> </div> </div> <!-- Page Content -->
Version data entries
9 entries across 9 versions & 1 rubygems