admin - siggame/discuss GitHub Wiki
Check out the docs for setting up the Models in the Django Admin. It boils down to creating an admin.py
in each app (like in converse
) to accompany the app's model.py
Each model should have its own Admin. So, you'll need to create a subclass of admin.ModelAdmin
for each Model, and put it in the admin.py
file.