12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <%
- # Copyright (C) 2011 - present Instructure, Inc.
- #
- # This file is part of Canvas.
- #
- # Canvas is free software: you can redistribute it and/or modify it under
- # the terms of the GNU Affero General Public License as published by the Free
- # Software Foundation, version 3 of the License.
- #
- # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
- # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
- # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
- # details.
- #
- # You should have received a copy of the GNU Affero General Public License along
- # with this program. If not, see <http://www.gnu.org/licenses/>.
- %>
- <% content_for :page_title do %><%= t :page_title, "Canvas Plugins" %><% end %>
- <%
- add_crumb t('#crumbs.plugins', "Plugins")
- %>
- <span class="small pull-right">
- Revision: <%= Canvas.revision || t('#canvas_revision_unknown', "Unknown") %>
- </span>
- <h2>
- <%= t :page_title, "Canvas Plugins" %>
- </h2>
- <% if @plugins.any? %>
- <table class="ic-Table ic-Table--striped">
- <thead>
- <tr>
- <th><%= t :name, "Name" %></th>
- <th><%= t :description, "Description" %></th>
- <th><%= t :tag, "Tag" %></th>
- <th><%= t :website, "Website" %></th>
- <th><%= t :author, "Author" %></th>
- <th><%= t :version, "Version" %></th>
- <th> </th>
- </tr>
- </thead>
- <tbody>
- <% @plugins.each do |plugin| %>
- <tr class="<%= cycle('odd', 'even') %>">
- <td class='name' nowrap="nowrap">
- <% if plugin.has_settings_partial? %>
- <a class="name" href="<%= plugin_path(plugin.id) %>"><%= h plugin.name %></a>
- <% else %>
- <span class="name"><%= h plugin.name %></span>
- <% end %>
- </td>
- <td class='description'><%= content_tag('span', h(plugin.description), :class => 'description') unless plugin.description.blank? %></td>
- <td class='tag'><%= h plugin.tag %></td>
- <td class='website'>
- <% if plugin.website.present? %>
- <a href="<%= plugin.website %>" class="icon-link not_external"></a>
- <% end %>
- </td>
- <td class="author"><%= plugin.author_website.blank? ? h(plugin.author) : link_to(h(plugin.author), plugin.author_website) %></td>
- <td class="version"><%= h plugin.version %></td>
- <td class="configure"><%= link_to("", plugin_path(plugin.id), :class => "Button Button--small icon-settings") if plugin.has_settings_partial? %></td>
- </tr>
- <% end %>
- </tbody>
- </table>
- <% else %>
- <p class="nodata"><%= t :no_plugins, "There are no Canvas plugins installed" %></p>
- <% end %>
|