I have a C# ASP.NET MVC and I'm stuck on one piece of functionality. My project is a game management system for a hobby.
After the user add a certain number of players and creates a game, it returns a view with all the games. (Two teams per game).
Each game and team are generated by two foreach loops, the first one loops through each of the games and displays them and the second one inside of it loops through the teams to display the players.
I want to add a button that says something along the lines of "Print" which will let the users download a pdf, but there needs to be only one game per page. (It's an hobby for old people, they have bad eyes)
All suggestions are welcome, I'm not exactly sure where to start.