Sha256: 3a3ad7ce74fdcb62593c335384760ff54cfd45e0543c27d9afa6e7ff94f31427
Contents?: true
Size: 1.95 KB
Versions: 7
Compression:
Stored size: 1.95 KB
Contents
module PolicyDashboardHelper COLORS = { :compliant_hosts => ArfReportDashboardHelper::COLORS[:passed], :incompliant_hosts => ArfReportDashboardHelper::COLORS[:failed], :inconclusive_hosts => ArfReportDashboardHelper::COLORS[:othered], :report_missing => '#92A8CD', }.freeze def host_breakdown_chart(report, options = {}) data = [] [[:compliant_hosts, _('Compliant hosts')], [:incompliant_hosts, _('Incompliant hosts')], [:inconclusive_hosts, _('Inconclusive')], [:report_missing, _('Not audited')],].each do |i| data << { :label => i[1], :data => report[i[0]], :color => COLORS[i[0]] } end flot_pie_chart 'overview', _('Compliance Status'), data, options end def status_link(name, label, path) content_tag :li do content_tag(:i, raw(' '), :class => 'label', :style => 'background-color:' + COLORS[label]) + raw(' ') + link_to(name, path, :class => 'dashboard-links') + content_tag(:h4, @report[label]) end end def compliance_widget(opts) name = opts.delete(:name) template = opts.delete(:template) widget = Widget.new(opts) widget.name = name widget.template = template widget end def assigned_icon(policy, arf_report) if arf_report.host.combined_policies.include? policy icon = 'check' tooltip_text = _('Host is assigned to policy') else icon = 'close' tooltip_text = _('Host is not assigned to policy but reports were found. You may want to delete the reports or assign the policy again.') end trunc_with_tooltip icon_text(icon, '', :kind => 'fa'), 32, tooltip_text, false end def unassigned_hosts_link trunc_with_tooltip( link_to( _("Hosts no longer assigned: %s") % @report[:unassigned_hosts], hosts_path(:search => "removed_from_policy = \"#{@policy.name}\"") ), 32, _("Total hosts with reports where policy is no longer assigned."), false ) end end
Version data entries
7 entries across 7 versions & 1 rubygems