Displaying 1 result from an estimated 1 matches for "period_budgets_path".
2010 Mar 01
1
Render - Missing Template
Sorry if you have had this problem many times before. I just can''t
seem to find the problem.
I have a budget controller with a create action like this:
def create
# do some things
if budget.save
redirect_to(period_budgets_path(period))
else
@budget = budget
@expense = budget.expense
@period = budget.period
render :action => "new"
end
end
When I try to save an invalid budget, I get a missing template error.
Sorry, I don''t have the exact message with me now but it basi...