# File app/controllers/attendance_adm_controller.rb, line 135
  def certif_format
    @new_line = CertifFormatLine.new
    @conferences = Conference.find(:all)
    @units = CertifFormat.full_units
    if request.post?
      @format.update_attributes(params[:certif_format])
      flash[:notice] << _('Format updated successfully')
    end
  end