Instead of my _form generating a new row for each new action how can I make it generate a new column?
TABLE #1:
ACTION | RESULT | MONTH
ACTION | RESULT | MONTH
ACTION | RESULT | MONTH
TABLE #2:
ACTION | ACTION | ACTION
RESULT | RESULT | RESULT
MONTH | MONTH | MONTH
Does one make the change in the index or controller or model?
My ultimate goal is to create a dynamic table where the user can see his improvement from month to month regarding his inputted action so for example if his action is "Mile run" then from one month to the next he would add his fastest mile time. I'm having a hard time with this because all the tutorials I've looked at adds new rows, not new rows and new columns.
BONUS TABLE #3:
ACTION | ACTION | ACTION
RESULT | RESULT | RESULT | MONTH (i.e. Jan)
RESULT | RESULT | RESULT | MONTH (i.e. Dec)
RESULT | RESULT | RESULT | MONTH (i.e. Nov)