I am still new on Django Web Framework and I want to understand the MVC concept based on this Project structure. Say I am trying to come up with an Online Gambling platform. Where exaclty do put the following;
1. say I want the player to randomly shuffle cards, is this whole business called on views.py or models or in models I just put a class related to creating my database?
2. say I want a player to have a ticket which is a receipt that can be picked randomly from those who have signed up for a draw. how exaclty do i have my clients get randomly generated receipts numbers using the random.randint module
3. Is there a possibility to generate a coin that is a local currency which enables players to buy them and then use the tokens for buying tickets into the game? If so how do i go about it in django python