Search results for: django
83 results found.
Django PayPal Subscriptions with Django-PayPal
PayPal Standard with Subscription There are many online services which allows users to access their content based on monthly or yearly subscription. The process of creation a subscription works almo…
Read MoreDjango PayPal Integration with Django-Paypal
This post describes how to integrate PayPal Payment gateway with Django using django-paypal. Getting a PayPal Business Account. # To integrate PayPal payment gateway into your application you will n…
Read MoreDjango Tips, Tricks & How To’s
Django PayPal Integration with Django-Paypal Django PayPal Subscriptions with Django-PayPal
Read MoreDeploying Django Project to DigitalOcean
This chapter provides step by step guide to deploy Django projects to the DigitalOcean server. DigitalOcean is one of the leaders VPS provider and their plans are very inexpensive - starting at jus…
Read MoreSettings for Multiple Environments in Django
Multiple Settings File # So far, a single settings.py file has served us well. Now we are moving to the production environment, as a result, some of the settings in settings.py file needs to be chan…
Read MoreCreating Sitemaps in Django
A Sitemap is just a list of links in a website which you want a search engine to crawl and thus index. In addition to that, a sitemap is also used to tell following information about the pages: How…
Read MoreFlatpages in Django
Web applications often contain pages which don't change frequently. For example, About Us, EULA (End User License Agreement), Terms of Use, etc. Such pages are known as flatpages. Django provides…
Read MoreAsynchronous Tasks with Celery
What is Celery # Django is designed for short-lived requests. Consequently, if you ever need to perform a long-running operation, you should always perform it outside of the request-response cycle. …
Read MoreSearching Snippets
In this lesson, we will add a view to allow users to search snippets via keywords. Let's start by creating a search form. In the forms.py, define SearchForm class towards the end of the file as…
Read MoreBuilding profile pages for Djangobin
Creating Settings View # The settings view will allow a logged in user to change preferences like default language, expiration and exposure. It also allows a user to change the profile visibility op…
Read More