canvadocs_settings.mustache 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <%
  2. # Copyright (C) 2014 - present Instructure, Inc.
  3. #
  4. # This file is part of Canvas.
  5. #
  6. # Canvas is free software: you can redistribute it and/or modify it under
  7. # the terms of the GNU Affero General Public License as published by the Free
  8. # Software Foundation, version 3 of the License.
  9. #
  10. # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
  11. # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
  13. # details.
  14. #
  15. # You should have received a copy of the GNU Affero General Public License along
  16. # with this program. If not, see <http://www.gnu.org/licenses/>.
  17. %>
  18. <%= fields_for :settings, OpenObject.new(settings) do |f| %>
  19. <table style="width: 500px;" class="formtable">
  20. <tr>
  21. <td colspan="2">
  22. <p><%= t :description, "This plugin integrates with Canvadocs (or any
  23. Box View compatible API) to provide an HTML5 document previewer." %></p>
  24. </td>
  25. </tr>
  26. <tr>
  27. <td><%= f.blabel :api_key, :en => "API Key" %></td>
  28. <td><%= f.text_field :api_key %></td>
  29. </tr>
  30. <tr>
  31. <td><%= f.blabel :base_url, :en => "Base URL" %></td>
  32. <td><%= f.text_field :base_url %></td>
  33. </tr>
  34. <tr>
  35. <td><%= f.blabel :annotations_supported, :en => "Annotations Supported" %></td>
  36. <td><%= f.check_box :annotations_supported %></td>
  37. </tr>
  38. <tr>
  39. <td><%= f.blabel :hijack_crocodoc_sessions, :en => "Hijack Crocodoc Sessions" %></td>
  40. <td><%= f.check_box :hijack_crocodoc_sessions %></td>
  41. </tr>
  42. </table>
  43. <% end %>