Going Beyond Django’s Registration
Here’s a Django tutorial on registration. Registration allows you to have users. A weak registration system puts your site at risk of spammers...
Here’s a Django tutorial on registration. Registration allows you to have users. A weak registration system puts your site at risk of spammers...
The need may arise for different versions of the same image to be used in different parts of your site. ImageKit is an app that takes care of...
**This article refers to outdated and deprecated technology** Sentry catches any exception that your django project raises, and stores it in your...
We use recaptcha to protect against bots. I will show you how to integrate Google’s reCAPTCHA with your django forms. Here are the steps to make it...
Cyclomatic Complexity (or Conditional Complexity) (CC) is a means of measuring the complexity of a given program. Complexity is measured by counting...
Let’s say you wanted to provide third-party application support for your web application. You’ll probably make an app that handles API calls, set up...
Search is an essential tool for any website, and is a feature often requested by both site owners and users. While the built-in Django QuerySet...
Django-articles (articles) is a fully-featured blog engine. This is useful for those who wish to set up a blog that’s tightly coupled to an existing...
Django-grappelli provides a revamp of the existing Django admin look and feel. In itself, it simply makes your site look better—you’ll need this in...
There is also an easy way to sort tabular data this time using django-sorting (https://github.com/directeur/django-sorting). Setup is described in...