Series - Beginners-Series-to-Django


Adding a Postgres for Azure database server [24 of 24] | Beginner's Series to: Django[MP4] [0:13:01] [2021/07/15]
In this final video, we'll provision a PostgreSQL server on Azure as a high-performance, production ready database for your Django application. Useful Links:https://aka.ms/CreateWebsitesWithDjango…


Deploying to Azure [23 of 24] | Beginner's Series to: Django[MP4] [0:08:43] [2021/07/15]
A website isn't complete until it's on the Internet, for other people to see. In this video, we will deploy the application onto Microsoft Azure's free App Service tier from VS Code. Useful…


Rendering generic views with django-crispy-forms [22 of 24] | Beginner's Series to: Django[MP4] [0:02:02] [2021/07/15]
Generic views are a great way to quickly get started with managing data in Django, but what about formatting and styling? In this video we will explore how to apply the django-crispy-forms module to…


Interacting with data in a generic view [21 of 24] | Beginner's Series to: Django[MP4] [0:05:35] [2021/07/15]
Providing ways to interact with data on the web can be a repetitive task, especially when creating or updating data. Django provides a robust and convenient experience for developing these features in…


Displaying data in generic views [20 of 24] | Beginner's Series to: Django[MP4] [0:04:33] [2021/07/15]
Displaying data is a common operation within data driven websites and Django provides a handy development experience with generic views. In this video we will demonstrate how to implement ListView to…


Displaying dynamic data in a Django function view [19 of 24] | Beginner's Series to: Django[MP4] [0:08:47] [2021/07/15]
Most views you create in Django will interact with data in your database. You can either write the code to interact with the object-relational-mapper (ORM) directly, or use some built-in generic…


Working with base templates and inheritance in Django [18 of 24] | Beginner's Series to: Django[MP4] [0:10:52] [2021/07/15]
Consistency is important in any web application as it allows the user to easily navigate and have a better experience. We can ensure consistency by utilizing base templates. We'll see how to create…


Implementing routes in Django [17 of 24] | Beginner's Series to: Django[MP4] [0:08:17] [2021/07/15]
All web frameworks need to know how to route a user request to the appropriate code to execute, generically called routes. Routes are setup in Django through URLconf files and paths. We'll see how to…


Creating function based views in Django [16 of 24] | Beginner's Series to: Django[MP4] [0:05:59] [2021/07/15]
With any web framework, code is executed in response to the user making some form of request or performing an action. In Django, the entry point is inside a view as either a function or a class. We…


Managing permission groups in the Django admin site [15 of 24] | Beginner's Series to: Django[MP4] [0:03:48] [2021/07/15]
Permission groups are a convenient way to grant permissions to a specific set of users. We will learn how to create permission groups, apply permissions, then add users to groups through the Django…


Managing Permissions in the Django admin site [14 of 24] | Beginner's Series to: Django[MP4] [0:03:53] [2021/07/15]
By default, every user type will have different levels of access and permissions. Most will not have the same level of access as a superuser, but a superuser can grant permissions to users and allow…


Working with data in the Django admin site [13 of 24] | Beginner's Series to: Django[MP4] [0:02:38] [2021/07/15]
You're able to insert, update, and delete data within the Django admin site if you have the proper permissions to do so. We will learn how to programmatically grant access to access application data…


Accessing the Django admin site as a superuser [12 of 24] | Beginner's Series to: Django[MP4] [0:03:14] [2021/07/15]
Administration in Django begins with a superuser. The superuser can access the admin site to manage data as well as create other users and manage their access within the site. We will learn how to…


Recap of models with Django [11 of 24] | Beginner's Series to: Django[MP4] [0:01:29] [2021/07/15]
Lets recap what we've learned so far and explore how you can create data in the database, change and save it, then how to read and query data to display on your application. Useful…


Querying databases [10 of 24] | Beginner's Series to: Django[MP4] [0:04:33] [2021/07/15]
Django provides a Python interface for you to query your database without having to write SQL queries. You can read, edit, create and delete data all from single Python functions in Python. Useful…


Creating Relationships [9 of 24] | Beginner's Series to: Django[MP4] [0:04:40] [2021/07/15]
Django has powerful support for relational databases. In this next video, we'll create a new data model that relates to the first. You'll learn about foreign keys, one to one, one to many and many to…


Exploring SQL databases in VS Code [8 of 24] | Beginner's Series to: Django[MP4] [0:04:39] [2021/07/15]
With a small extension, SQLite Explorer, you can see and edit the database that Django creates for development and testing. We'll see the results of the Django migration scripts and the effect they…


Exploring all the field types [7 of 24] | Beginner's Series to: Django[MP4] [0:02:35] [2021/07/15]
Next we will explore all the built-in field types available in Django 3. You will learn how to store emails, URLs, images and dates in the database. Useful…


Declaring your first models [6 of 24] | Beginner's Series to: Django[MP4] [0:08:55] [2021/07/15]
In this video you will create a basic data model in Python that can be stored in a database. We'll create a model for destination and cruise that can be shown in the example application. You'll learn…


Getting Started: Installing Pre-requisites [5 of 24] | Beginner's Series to: Django[MP4] [0:03:13] [2021/07/15]
Getting your computer in the right state to follow this tutorial is so important! In this tutorial, we will show you everything you need to do in order to install the tools you will need to succeed!…


Hello, Django [4 of 24] | Beginner's Series to: Django[MP4] [0:10:10] [2021/07/15]
It wouldn't be an official programming video series if we didn't do "Hello, world!" We won't go against tradition, and walkthrough the classic demo, World. We will also see how the different…


Starting a Django project and core concepts [3 of 24] | Beginner's Series to: Django[MP4] [0:09:00] [2021/07/15]
As with any framework, the first step to getting started is installation. Installing Django is accomplished by walking through the same steps for most every Python library. We'll see how to create a…


Installing Django [2 of 24] | Beginner's Series to: Django[MP4] [0:05:40] [2021/07/15]
If you're curious about Django and not sure where to start we're here to help. We've gathered some amazingly talented people to help get you up to speed on one of the most popular programming…


Creating data-driven web applications with Django [1 of 24] | Beginner's Series to: Django[MP4] [0:02:55] [2021/07/15]
If you're curious about Django and not sure where to start we're here to help. We've gathered some amazingly talented people to help get you up to speed on one of the most popular programming…