bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch

Loading lesson path

Learn/Django

Django

Admin

Admin focused on Django Admin and related concepts.

Lesson 1visual

Django Admin

Django Admin Django Admin is a really great tool in Django, it is actually a CRUD* user interface of all your models! *CRUD stands for Create Read Update Delete. It is free and comes ready-to-use wit…

2 min
Read lesson →
Lesson 2visual

Django Admin - Create User

Create User To be able to log into the admin application, we need to create a user. This is done by typing this command in the command view: python manage.py createsuperuser Which will give this prom…

2 min
Read lesson →
Lesson 3

Django Admin - Include Member

Django Admin - Include Member

2 min
Read lesson →
Lesson 4

Django Admin - Set Fields to Display

Make the List Display More Reader-Friendly When you display a Model as a list, Django displays each record as the string representation of the record object, which in our case is "Member object (1)",…

2 min
Read lesson →
Lesson 5

Django Admin - Update Members

Update Members Now we are able to create, update, and delete members in our database, and we start by giving them all a date for when they became members. Click the first member, Stalikken, to open t…

2 min
Read lesson →
Lesson 6

Django Admin - Add Members

Add Members To add a new member, click on the "ADD MEMBER" button in the top right corner: You will get an empty form where you can fill in the members fields: Fill in the fields and click "SAVE": No…

2 min
Read lesson →
Lesson 7

Django Admin - Delete Members

Delete Members To delete a new member, you can either select a member and choose the action "Delete selected members" like this: Run Demo Or you can open a member for editing, and click the red DELET…

2 min
Read lesson →