У нас вы можете посмотреть бесплатно Adding our Models to Admin.py или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
This video is about adding models to the admin.py file in a Django project. This video goes over the following: What the admin.py file is How to import models into the admin.py file How to register models in the admin.py file How to create a superuser How to log in to the admin panel Key takeaways: The admin.py file is a file that allows you to add models to the Django admin panel. Models can be imported into the admin.py file using the from django.contrib import admin statement. Models can be registered in the admin.py file using the admin.site.register(Model) statement. A superuser can be created using the python manage.py createsuperuser command. The admin panel can be accessed by going to the /admin/ URL.