Module: ForemanSalt::SaltModulesHelper

Defined in:
app/helpers/foreman_salt/salt_modules_helper.rb

Instance Method Summary collapse

Instance Method Details

#colorize(state) ⇒ Object



11
12
13
14
15
16
17
# File 'app/helpers/foreman_salt/salt_modules_helper.rb', line 11

def colorize(state)
  # Make the state easier to read
  combo = %w(2E9DB9 4D1D59 2C777E 1C4758 591D4B)
  state.split('.').each_with_index.map do |section, index|
    "<span style='color: ##{combo[index % 5]}; font-weight: bold;'>#{section}</span>"
  end.join('.').html_safe
end

#import_from_proxiesObject



3
4
5
6
7
8
9
# File 'app/helpers/foreman_salt/salt_modules_helper.rb', line 3

def import_from_proxies
  links = SmartProxy.with_features('Salt').map do |proxy|
    display_link_if_authorized(_('Import from %s') % proxy.name, hash_for_import_salt_modules_path.merge(:proxy => proxy), :class => 'btn btn-default')
  end.flatten

  select_action_button(_('Import'), {}, links)
end