I have a Message model which has a create date. How can I make it so that I can display the date horizontally and the other attributes vertically.
So it would be something like this:
Date 1/1/11 2/1/11 3/1/11
Message message1 message2 message3
Attr 1 attr1 val .... ...
Attr 2 attr2 val .... ......
Is there a plugin/gem that I could use in Rails, or I have to use some JavaScript library to do that?