Displaying 1 result from an estimated 1 matches for "list_cl".
Did you mean:
list_cb
2006 Feb 08
7
DRY methodology
because I am a grasshopper...
Now that I can sort my ''list''...is there a logical way of not repeating
myself to having essentially the same list view with multiple sorts?
i.e.
def list_cl
# ordered by clients last name
@placement_pages, @placements = paginate(
:placements,
:include => [:client],
:order_by => ''clients.last_name'',
:per_page => 14)
end
def list_fac
# ordered by facility
@placement_pages, @placements =...