"Trivivo" is a website developed by me that aims to test you with 15 questions of varying difficulty and topics, with staggering timeouts. The aim is to score the highest among the quiz-takers!
.
├── adminpanel
├── auth
├── game
├── kbc
├── static
└── templates
adminpanelapp handles administrator actions of the app, allowing administrators to perform elevated actions such as CRUD operations, changing timeout speeds, etc.authapp handles authentication of users/admins to various sites.gameapp handles the game logic of the app, involving timeouts, progression to the next levels, score/leaderboard handling, etc.kbcis the project folder (for Django projects).staticholds the staticfiles for the project & apps.templatesholds the templates for all the apps that get rendered when called via theviews.pyin each app.