#django
Explore materials tagged "django" from expert practitioners. Up-to-date articles and useful tips to help you grow.
Articles with tag "#django"
All materials on the topic django
Django DeleteView
DeleteView is a CBV for deleting an object with a confirmation step.
Django Admin: Overview
Django Admin is a built-in management panel for working with data through a browser.
Django Development Server
Django's built-in server is intended for local development: it runs the project and reloads Python code when files change.
Pagination in Django ListView
Covered topics: Enabling pagination, Template with pagination, Pagination with filters, Manual pagination (in function-based views).
Django UpdateView
UpdateView is a class-based view for editing an existing object through a form.
login_required: protecting views
Django can restrict a view to authenticated users with a decorator for function-based views or a mixin for class-based views.
Django ORM: Cheatsheet
ORM (Object-Relational Mapping) lets you work with the database through Python objects without writing SQL.
Django: Next Steps
You've mastered the Django fundamentals. Where to go from here?
Django Templates: Introduction
Django Template Language (DTL) is a simple templating language for generating HTML.
Project vs Application in Django
A Django project contains the site's shared configuration, while applications split its functionality into focused, reusable components.
Views in Django: Handling Requests
A view is a function or class that receives an HTTP request and returns an HTTP response.
Environment Variables in Django
Covered topics: Why use environment variables, python-dotenv, django-environ (alternative), .gitignore.
Similar tags
Study related topics
Looking for more on the topic?
Study all our materials or subscribe to updates