Django community: RSS
This page, updated regularly, aggregates Community blog posts from the Django community.
-
Running Vault and Consul on Kubernetes
In the following tutorial we’ll walk you through how to use Minikube to run Kubernetes locally and then we'll run Hashicorp's Vault and Consul on K8s. -
Django Models in Action
Hey there, how are you doing today? Today we will look into Django models in action after we have discussed different fields of models we can use in the last article Django Models. In this article, we will Create a Database table with Django Field ... -
Python Software Foundation - Ewa Jodlowska
Python Software FoundationLife as a Python Foundation Director@ewa_jodlowska on TwitterPSF Annual ReportPSF Membership LevelsSupport the ShowThis podcast does not have any ads or sponsors. To support the show, please consider visiting LearnDjango.com, Button, or Django News. -
Jason Learns Django - 06
Hard day again. I just cannot seem to focus and learn. It takes slogging and rewatching and retyping and oh, I missed a colon there. Do it again. And again. And again. And that is the only way, I seem to make any progress. Well, the learning at speed does not quite seem to be in my hands (or my brain 😂) What is in my control, and the best I can do, is to show up every day. Read more… (1 min remaining to read) -
Linting in Webpack
You will learn how to use Eslint and Stylelint to lint code with Webpack -
Linting in Webpack
You will learn how to use Eslint and Stylelint to lint code with Webpack -
Fluent in Django: 10+ Django template filters you should know
Prerequisites You will need the basic knowledge of Django. If you don't feel comfortable with Django yet, try this beginner-friendly tutorial. Django template filters Whiletags lives between curly braces a percent ({% tag %}), variables live between ... -
How much Python you need to know to get started with Flask & Django.
Django & Flask have made a boom in the web development industry because of their rapid development process. The reason for rapid development you ask ? Of course it's Python! Both Django & Flask are Python Web Frameworks which helps in rapid developme... -
Canonical SEO Failure
This post is less about teaching and more about schadenfreude amusement for you, and catharsis for me. It’s the story of how one unfortunate HTML tag kicked me off almost all search engines and my months-long way back. And why it didn’t matter in the end. -
Jason Learns Django - 05
Life got in the way again. Remembered yesterday. So I took it easy. Gave myself 4 hours and the grace to quit if I wasn’t done. And somehow, by the skin of my teeth, I got done with the pending module. Read more… (1 min remaining to read) -
Deploying Django to Heroku
In the previous Django - Getting Started post, we set up a new Django app, basically creating a fullstack Python Hello World. In this post, we will deploy this very basic app to Heroku (a free hosting platform which can run a Django server along with... -
Django: The Request-Response Cycle
Have you ever wondered, things under the hood seems to be more fascinating than the one showcased in front of us. It's kind of a Butterfly Effect taking place. So let's pull the shades off and unveil the true story of what's happening behind the scen... -
Django: The Request-Response Cycle
Have you ever wondered, things under the hood seems to be more fascinating than the one showcased in front of us. It's kind of a Butterfly Effect taking place. So let's pull the shades off and unveil the true story of what's happening behind the scen... -
Jason Learns Django - 04
I thought last friday was hard. Boy, was I wrong. Read more… (1 min remaining to read) -
How to create an ecommerce website using django
This post will be a series of posts that will enable us to build a fully functioning ecommerce website named ESHOP using django. For you to effectively understand this, you will need to at least have a basic understanding of python and object oriente... -
Creating a follow and unfollow system in Django | python
Social Media giants like Instagram, Twitter, Facebook, and Github have one thing in common, that is it follow/unfollow feature. which allows the user to follow each other. Here, in this post, we have tried to mimic this feature. *Basic knowledge of D... -
Creating a follow and unfollow system in Django | python
Social Media giants like Instagram, Twitter, Facebook, and Github have one thing in common, that is it follow/unfollow feature. which allows the user to follow each other. Here, in this post, we have tried to mimic this feature. *Basic knowledge of D... -
Jason Learns Django - 03
Today was a slog. Life got in the way, so lost some scheduled time. So decided to work some more in the evening. Read more… (1 min remaining to read) -
Building an Ecommerce(Named eshop) Website using django
This post will be a series of posts that will enable us to build a fully functioning ecommerce website using django. For you to effectively understand this, you will need to at least have a basic understanding of python and object oriented programmin... -
Building an Ecommerce Website using django
This post will be a series of posts that will enable us to build a fully functioning ecommerce website named ESHOP using django. For you to effectively understand this, you will need to at least have a basic understanding of python and object oriente... -
Django Ecommerce - Setting Up The Project
This post will be a series of posts that will enable us to build a fully functioning ecommerce website named ESHOP using django. For you to effectively understand this, you will need to at least have a basic understanding of python and object oriente... -
Django Ecommerce - Setting Up The Project
This post will be a series of posts that will enable us to build a fully functioning ecommerce website named ESHOP using django. For you to effectively understand this, you will need to at least have a basic understanding of python and object oriente... -
Extending Django Wizards
I quite like the wizard pattern. Most people are somewhat familiar with the concept of having to complete a logically grouped set of form elements before moving onto the next one, with a final confirmation step, after which the operation is committed. Howver, there are some perceieved problems within the [Django formtools](https://django-formtools.readthedocs.io/en/latest/) implementation, at least from the perspective of our use case. The big one my team have identified: when you reload the page with a GET request, it clears out the data from the current run of the wizard. This is problematic when something happens to your internet, and you have to reload a page manually, for instance. Or if you just happen to reload it through another means. Related to this, if you don't have all of the information you require, there's no way to "stash" your current iteration, and return to it later. This later could be after a logout and login (or even on a different computer). Additionally, there's no way to have "extra" steps inserted based on the selections made in a previous step. You could take the other approach, and define all of the steps initially (and then skip those that aren't required), but … -
Hello Django #2
In the last blog, I introduce you abut Django and its features. In this blog, we are understanding Django installation and project structure of Django and write the first hello world in it. Let's Started... I will walk you through the installation ... -
How to deploy django app on heroku
Heroku is a cloud platform that lets companies build, deliver, monitor, and scale apps — they're the fastest way to go from idea to URL, bypassing all those infrastructure headaches. First thing first, create an account on Heroku. Then continue with ...