View on GitHub

reading-notes

My learning journal for Code Fellows

Django Models

Using Models

Models allow a website to format information about an object a certain way, and then link those objects together in varying kinds of relationships

Model Definition

To declare a model you create the model as a subclass of django.db.models.Models. The information contained within that subclass can then contain fields, methods, and metadata.

Model Management

Once the model class is defined you can use the CRUD process on them.

Django Admin Site

The Django admin application allows you to build a site area that wil allow you to CRUD records. This allows for more effective testing in terms of if you are getting the right kind of data from the user in the site.

Registering Models

Within the admin.py folder in the catalog application, import the models that you would like to register into the application by using admin.site.register(ModelName)

Creating a Custom User

To log into the admin site, you need to create a user account with the staff status enabled. This will allow the user to view and create records, as well as manage the objects. To create a superuser that can do all of these things, in the command line run the prompt

  python3 manage.py createsuperuser

Then enter in a username, email, and strong password. Now restart the development server with the following command to test the login

  python3 manage.py runserver

Logging in and Using the Site

Once logging into the admin url, the logged in superuser will then be able to create a new instance of the model you are trying to test.