Displaying 1 result from an estimated 1 matches for "yearbefore".
2010 Aug 02
1
Any way around using only 1 render per action?
...ame,
first_name")
@households.each { |@household|
@today = Date.today
@year = @today.year
@thisyear =
Visit.find_all_by_year_and_household_id(Date.today.year,
@household.id)
@lastyear =
Visit.find_all_by_year_and_household_id(Date.today.year-1,
@household.id)
@yearbefore =
Visit.find_all_by_year_and_household_id(Date.today.year-2,
@household.id)
render( :action=>:printone)
}
date=`date +%Y%m%d-%H:%M`
respond_to do |format|
format.pdf { send_data render_to_pdf( :action => ''print'',...