====== Django ====== * [[.django : deploy | Deploy]] * [[.django : models | Models ]] ---- ===== Override Admin Templates ===== [[https://docs.djangoproject.com/en/3.0/ref/contrib/admin/#templates-which-may-be-overridden-per-app-or-model | Documentation]]\\ Copy admin templaes from ''/usr/local/lib/python3.7/site-packages/django/contrib/admin/templates/admin'' (or from ''venv'') and make changes to copied files now placed in your project's ''templates'' directory * ''app_index.html'' Homepage for all app models * ''change_list.html'' Page after selecting a model that shows all existing of that model * ''change_form.html'' Page for editting/creating a model ----