I am working on a meteor application where users are presented with a list of concerts that are performing at a venue. The user can then select whether s/he wants to work on that night. I have got it to a stage where one user can use it but I am struggling with how to set up collections to allow multiple users to use the application. I need it to be in such a way that the original collection is kept the same for future users to view but each user should be able to change the data which is then saved to a collection for each user for that specific month.
I would appreciate any help greatly as this is hindering me from completing the project. I am happy to change my code in any way to allow for this functionality as this was the most important criteria for the application.
I am using the reactiveTable meteor package to display the data in a collection so I would like to preserve the data in the collection while being able to make a copy of the document in the collection.
This is how I am displaying the table on the page:
{{> reactiveTable collection=table settings=settings}}
Thank you for any help that anybody can provide.