aboutsummaryrefslogtreecommitdiffstats
path: root/app/helpers/referentials_helper.rb
blob: 8251377aab38cd2f3c9aa88f60dc93461d404280 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module ReferentialsHelper
  # Outputs a green check icon and the text "Oui" or a red exclamation mark
  # icon and the text "Non" based on `status`
  def line_status(status)
    if status
      content_tag(:span, nil, class: 'fa fa-exclamation-circle fa-lg text-danger') +
        t('false')
    else
      content_tag(:span, nil, class: 'fa fa-check-circle fa-lg text-success') +
        t('true')
    end
  end

  def referential_overview referential
    service = ReferentialOverview.new referential, self
    render partial: "referentials/overview", locals: {referential: referential, overview: service}
  end
end