Architecture - J-Jullaphong/b2d-ventures GitHub Wiki

Architecture

Django Architecture

Django uses this Model-View-Template (MVT) pattern to process user requests and return responses, keeping the application organized and efficient.

User : Interacts with the web application. URL : Maps user requests to specific views. View : Handles logic, interacts with models, and passes data to templates. Model : Manages the data and database interactions. Template : Renders HTML based on data from the view.