I have the following problem: I need to create a table which will look like this:
I'm building the table dynamically with ruby and I want to avoid having to write a "each" loop for each table row.
Is there a way to make a table "inverse"? Something like
- td (user1 row)
- tr (user1)
- tr (user1 Name)
- tr (user1 Age)
Sorry for the horrible formatting... Hope this is clear enough.