Django Flashcards
What is Models?
Deals with data and databases, it can retrieve, store, and change data in a database.
What is Templates?
Determines how the data looks on a web page.
What is Views?
Describes the data to be presented, and passes this information to the template.
How to start Django project?
django-admin <command></command> [options]
django-admin startproject projectname
What are apps in Django?
a Django app is a submodule to a project, that contains the code for a specific feature.
- To add a new app, run this command in the root folder: python3 manage.py startapp vetoffice
- When adding a new app, you must add it to the INSTALLED_APPS under settings.py
What are projects in Django?
A Django project refers to the entire code base and its parts.
What is the folder structure for a Django app?
projectname/
|– appname/
|– templates/
|– appname/
|– file.html
|– static/
|– appname/
|– file.css
What is DTL?
Django Template Language. Allows you to write django/python expressions within html document. Can be used to display variables, loops, and create conditionals.
You can also use filters to modify the data so that you dont have to write much more code.
What are some drawbacks to preinstalled SQLite?
SQLite’s signature portability unfortunately makes it a poor choice when many different users are updating the table at the same time (to maintain integrity of data, only one user can write to the file at a time). It also may require some more work to ensure the security of private data due to the same features that make SQLite accessible. Furthermore, SQLite does not offer the same exact functionality as many other database systems, limiting some advanced features other relational database systems offer. Lastly, SQLite does not validate data types. Many other database software would reject data that does not conform to a table’s schema, how a table’s data is organized. However, SQLite allows users to store data of any type into any column.
What is the difference between null and blank?
null is a field can be left intentionally void of information. blank is similar to null, but setting blank to True means a field doesn’t have to take anything, not even a null value.
What are methods in models?
Methods are functions defined in our model that describe the behaviors and actions of our model.
What are migrations? When is it necessary? How do you make migrations?
Migrations are Django’s way of propagating changes you make to your models (adding a field, deleting a model, etc.) into your database schema.
Migrations are needed when we make changes to our models.
- Running python3 manage.py makemigrations to create a file with the instructions needed for our database to create the proper schemas.
- Running python3 manage.py migrate to execute the instructions in our file to create the actual tables in our database.
How to reverse a migration?
python3 manage.py migrate <app_name> <migration_name>
migration_name would be something like 0001 or 0002
Use python3 manage.py showmigrations <app_name> to see a list of all the migrations.</app_name></migration_name></app_name>
How to get data from database using Django shell?
ModelName.objects.get(name=”name”)
How to delete data from database using Django shell?
ModelName.objects.first().delete()
What is the exclude querying method?
Returns objects that do not match the argument
What is the order_by querying method?
Returns objects in ascending or descending (-) order that match the argument
How to query two tables at once?
Using the filter() method
What does the view do in Django?
A view is a function that takes in an HTTP request and returns an HTTP response.
What is generic view?
They take certain common idioms and patterns found in view development and abstract them so that you can quickly write common views of data without having to write too much code.
Explain CRUD operations in generic view
Import the generic views below:
from django.shortcuts import render
from .models import Owner, Patient
from django.views.generic import ListView
from django.views.generic.edit import CreateView, UpdateView, DeleteView
def home(request):
context = {“name”: “Djangoer”}
return render(request, “vetoffice/home.html”, context)
class OwnerList(ListView):
model = Owner
template_name = “vetoffice/owner_list.html”
class PatientList(ListView):
model = Patient
template_name = “vetoffice/patient_list.html”
Create your other generic views below:
class OwnerCreate(CreateView):
model = Owner
template_name = “vetoffice/owner_create_form.html”
fields = [“first_name”, “last_name”, “phone”]
class PatientCreate(CreateView):
model = Patient
template_name = “vetoffice/patient_create_form.html”
fields = [“animal_type”, “breed”, “pet_name”, “age”, “owner”]
class OwnerUpdate(UpdateView):
model = Owner
template_name = “vetoffice/owner_update_form.html”
fields = [“first_name”, “last_name”, “phone”]
class PatientUpdate(UpdateView):
model = Patient
template_name = “vetoffice/patient_update_form.html”
fields = [“animal_type”, “breed”, “pet_name”, “age”, “owner”]
class OwnerDelete(DeleteView):
model = Owner
template_name = “vetoffice/owner_delete_form.html”
class PatientDelete(DeleteView):
model = Patient
template_name = “vetoffice/patient_delete_form.html”
Inside the view.py file, you need to define paths for each crud operations!
What does Http404() do?
show 404 page if the request object does not exist. Use try, except blocks
What is CSRF token?
Cross Site Request Forgery protection. The CSRF middleware and template tag provides easy-to-use protection against Cross Site Request Forgeries. This type of attack occurs when a malicious website contains a link, a form button or some JavaScript that is intended to perform some action on your website, using the credentials of a logged-in user who visits the malicious site in their browser. A related type of attack, ‘login CSRF’, where an attacking site tricks a user’s browser into logging into a site with someone else’s credentials, is also covered.
The CSRF token protects the application and the user by adding a secret token inside of the “POST” methods in the forms each time the form is rendered. The CSRF token ensures that only the proper user is using the proper credentials.
What is get_absolute_path method?
Redirects user to another page after submitting data.