app/views/overrides/organizations/_edit_override.html.erb in katello-3.17.0.rc2.2 vs app/views/overrides/organizations/_edit_override.html.erb in katello-3.17.0
- old
+ new
@@ -13,6 +13,15 @@
button_tag _('Generate and Download'), :id => :download_debug_cert_key,
:type => :button, :style => 'margin-top: 8px;', :class => 'btn btn-small',
'data-url' => "/katello/api/v2/organizations/#{@taxonomy.id}/download_debug_certificate"
end %>
-<% end%>
+ <% if @can_toggle_sca %>
+ <%= field(f, _('Simple Content Access'),
+ :help_inline => _('Toggling Simple Content Access will refresh your manifest.')) do
+ tag1 = hidden_field_tag 'simple_content_access', '0'
+ tag2 = check_box_tag 'simple_content_access', '1', @taxonomy.simple_content_access?
+ tag1 + tag2
+ end %>
+ <% end %>
+
+<% end %>