# File app/controllers/attendance_adm_controller.rb, line 66
  def list
    if @conference.nil?
      redirect_to '/'
      flash[:error] << _('Could not find which conference to report')
      return false
    end
    @other_confs = Conference.past_with_timeslots
    @totals = Attendance.totalized_for_conference(@conference)
  end