newbie question:
what is the best way in rails to make content managed data that isn't iterated? eg. on a 'contact us' page i have an business address field that the client needs to be able to update, and there are many other fields on the site that need to be content managed.... should i create one table that stores all this data and access it in the pages action?
i've created a table called 'blocks' which contains fields 'id', 'name' and 'content'
and in the controller
def contactus address = Block.find(:first, :conditions => { :name => "businessaddress"}) end
which i can then access from the view, except this seems cumbersome.
better ideas?