I have an existing module done the "old-fashioned way" in DNN that starts with a summary view and toggles between two "detail" views.
http://www.twincitytc.org/Race-Information/Results
I thinking I'm missing something conceptually, and thus can't get this to work in an Angular module.
What I want to have happen is initially when the module is displayed I want the summary listing with the list of events. If you click on any event name I want the details for that event displayed, if you cancel out of that detail I want it to return to the summary. If you're on the event detail listing and click on a person I want the details for that person displayed, and if you click on an event on that view I want the details for that event, and a cancel takes you back to the summary.
So there's three view pages in the "old" module; Summary, EventResults, and PersonResults. What would be the right way to consolidate that to a single form SPA and be able to toggle between the three different views in the manner I was doing before?