tag: tutorial

Creating the official Django Polls app Part 8
Maria D. Campbell
In this section, I discussed how to install and configure the Django Debug Toolbar, introduced resources where I could access other third-party applications and provided next steps.
#fullstack development, #macOS, #django, #python3, #django commons, #django debug toolbar, #django settings, #pip, #series, #third-party packages, #tutorial

Creating the official Django Polls app Part 7
Maria D. Campbell
In this section, I customize the Question admin form, add Choice related objects to the admin form, customize the admin change list, add search capability to the admin interface, customize the admin look and feel, and customize my project's templates.
#fullstack development, #macOS, #django, #python3, #admin change list customization, #admin form, #admin interface, #search, #series, #template customization, #tutorial

Creating the official Django Polls app Part 6
Maria D. Campbell
In this section, I add static files to my Django Polls application configured for local development.
#fullstack development, #macOS, #django, #python3, #local development, #series, #staticfiles, #static template tag, #tutorial

Creating the official Django Polls app Part 5
Maria D. Campbell
This is the fifth installment in a series called Creating the official Django Polls app. Continue following this series with this fifth part. I walk through test-driven development in Django, finding and fixing a real bug in Question.recently_published(), and then build out view tests for the polls index and detail pages.
#fullstack development, #macOS, #fixing bugs, #identifying bugs, #series, #test client, #testing strategies, #tutorial, #unittest

Creating the official Django Polls app Part 3
Maria D. Campbell
This is the third installment in a series called Creating the official Django Polls app. Continue following this series with this third part. Learn how to create the index template, use the render() shortcut, implement raising a 404 error in the detail view, use template tags, and namespace URL names.
#fullstack development, #macOS, #django, #python3, #404, #model manager, #render shortcut, #series, #templates, #template namespacing, #tutorial, #urlpatterns, #views

Creating the official Django Polls app Part 4
Maria D. Campbell
This is the fourth installment in a series called Creating the official Django Polls app. Continue following this series with this fourth part. Learn how to add a minimal form to your HTML template, update a function based view, refactor urls.py to match generic views, and install djLint to format your Django templates.
#fullstack development, #macOS, #djlint, #forms, #function-based views, #generic class based views, #series, #tutorial

Creating the official Django Polls app Part 2
Maria D. Campbell
This is the second installment in a series called Creating the official Django Polls app. Continue following this series with this second part to learn how to set up a database in Django, create models, use the interactive Python shell, and get to know the Django admin interface.
#fullstack development, #macOS, #django, #python3, #admin forms, #installed apps, #language code, #number grouping, #series, #time zone, #tutorial, #use i18n, #use thousand separator, #use tz

Creating the official Django Polls app table of contents
Maria D. Campbell
I wrote this series because I thought the best way to become even more familiar with the Django documentation would be to follow their Django Polls tutorial and create a Django Polls application.
#fullstack development, #macOS, #django, #python3, #series, #tutorial

Creating the official Django Polls app Part 1
Maria D. Campbell
This is the first installment in a series called Creating the Official Django Polls app. Follow this series starting with this post to learn how to create a Django application: how to install Django, check if it is installed, create a virtual environment, create a project, create an app, initialize Git, create your first view, create a URLconf for the index view, and configure the global URL configuration.
#fullstack development, #macOS, #django, #django app, #django project, #development server, #git, #pip, #python3, #python interpreter, #runserver, #series, #tutorial, #urlconf, #views, #virtualenv, #virtual environment