#NoStupidQuestion: On a Django app, if building a new view for a frontend where should you get the objects? from the models or Django admin?
When building a new view for a frontend, you should get the objects from the models, not the Django admin. Here's why: 1. Separation of Concerns Django Admin is intended for backend administration and internal use. It provides a user interface for ...





