osem-fcy/app/helpers/admin/conference_helper.rb

12 lines
274 B
Ruby
Raw Normal View History

module Admin
module ConferenceHelper
def withdrawn_events?(conference)
conference.program.events.where(state: :withdrawn).empty?
end
def withdrawn_events_count(conference)
conference.program.events.where(state: :withdrawn).count
end
end
end