# File app/helpers/application_helper.rb, line 6
  def formatted_date(date_to_format)  
        date_num= date_to_format.strftime('%d').to_i
        month_num = date_to_format.strftime('%m').to_i
        result_date=date_num.to_s+"/"+month_num.to_s       
  end