af83/chouette-core

View on GitHub
app/helpers/import_resources_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
# -*- coding: utf-8 -*-
module ImportResourcesHelper

  # Import statuses helper
  def import_resource_status(status)
      cls =''
      cls = 'success' if status == 'OK'
      cls = 'warning' if status == 'WARNING'
      cls = 'danger'  if status == 'ERROR'
      cls = 'alert'  if status == 'IGNORED'

      content_tag :span, '', class: "fa fa-circle text-#{cls}"
  end

end