Episode 4 - Building User Interfaces
Learn how to use Django templates to build user interfaces, including setup, rendering, and core concepts.
Learn how to use Django templates to build user interfaces, including setup, rendering, and core concepts.
Three deployment strategies for integrating a Django REST backend with a React frontend, comparing pros and cons.
A guide on deploying Django model changes to production using migrations, covering a simple method and best practices.
How to handle slow Django views by offloading long-running tasks using Django Q for background processing.
A guide to using Django templates for building user interfaces, covering setup, configuration, and best practices.
Episode 50 of a series on building a SaaS product, focusing on creating a continuous user onboarding flow with Django and Python.
A guide to setting up scheduled tasks in Django using the Django-Q library as a simpler alternative to Celery.
A developer builds and styles the onboarding flow UI for a SaaS product using Python, Django, and Tailwind CSS.
A developer designs and implements a user onboarding flow for a SaaS app using Python and Django, covering planning and initial coding.
Explains Django views, which handle HTTP requests and return responses, covering function views, HttpRequest, and HttpResponse.
A developer builds a weekly navigation view for a Django SaaS app, focusing on UI, URL routing, and date logic.
A developer discusses fixing an N+1 query bug and handling tricky date logic in a Django app, part of a SaaS building series.
Announcement of Django Riffs, a new podcast for beginners to learn the Django web framework through topical episodes.
A technical guide on using Django's UpdateView to quickly create an edit form for a CourseTask model in a SaaS application.
A guide to understanding and building URLs in Django, covering URLconfs, path functions, and routing.
An introduction to the Django Riffs podcast, a beginner-friendly educational series for learning web development with the Django framework.
A developer episode on styling a Django template's tabular view using Tailwind CSS, including column highlighting and data structure explanation.
The author adds Tailwind CSS to style a Django SaaS project, fixes a logout issue, and explains utility-first CSS.
Explains how Django processes web requests using URL configurations (URLconf) to route URLs to the appropriate Python views.
A technical guide on implementing email-based user accounts in Django using the django-allauth package, including configuration and testing.