aboutsummaryrefslogtreecommitdiffstats
path: root/app/helpers/application_helper.rb
blob: cf6486306b8f895f440efcc4e423012f27670bd1 (plain)
1
2
3
4
5
6
7
8
module ApplicationHelper

  def selected_referential?
    @referential.present? and not @referential.new_record?
  end

  
end