Templates
May 21 2019- POSTED BY projecth
App Template Inside the courses folder create a templates folder. HTML Template Inside the templates folder create another courses folder, […]
Read MoreCreating the First Admin Account createsuperuser Creates a superuser. You can now log in to the admin dashboard on loclhost:8000/admin, […]
Read MoreCreate App View [courses/views.py] from django.http import HttpResponse from django.shortcuts import render from .models import Course def course_list(request): courses = […]
Read MoreThe following is a handy command that lets us explore the ORM and create new records QuerySet This looks like […]
Read MoreA Django project is made of multiple apps that can be reused and moved from project to project.When you name […]
Read MoreInstalling PIP If PIP did not come installed with Python 3, do the following: Download get-pip.py from: http://pip.readthedocs.org/en/stable/installing.html If PIP is not Python […]
Read More