Wednesday, November 7, 2012

Writing Custom Template Tags in Django

Django templates are the view part of the Django MVC. So, the templates should just handle the display part and any login in templates should be kept to a minimum. However, there are times when we just have to include logic in the templates, and using template tags is the most elegant way to handle this. Creating your own custom template tags is fairly simple. One template tag needed often is...
Read More

Thursday, June 7, 2012

Testing PayPal on Website

PayPal provides a testing tool called PayPal Sandbox to test website's PayPal's deployment. We can create pseudo buyer and seller accounts, provide the accounts with pseudo money and cards, and test the transaction and user experience. All this without putting up real money or fees. They have a User's Guide here. However, the basic steps are simple: Create a Sandbox account first...
Read More

Wednesday, June 6, 2012

Paypal Shopping Cart

PayPal's documentation has really very subtle hints about what needs to be done to get Paypal working for a website, and you need to plough through a lot of links to figure out anything useful. On sign up, they take the user to a page with customizable buttons for Buy Now, Subscribe, Shopping Cart. Now, if the site has only one item to sell, it should use the 'Buy Now', if it is selling subscriptions,...
Read More

Thursday, May 24, 2012

Adding placeholders, autofocus and other attributes to Django forms

Placeholder is a short hint (a word or short phrase) intended to aid the user with data entry in forms. With HTML5, adding placeholders to forms is as simple as including a keyword: <label>Name: <input name="name" placeholder="John Doe" type="text" /></label> This would appear in the form as:   Name: To add placeholders to Django forms, simply specify...
Read More

Wednesday, May 23, 2012

Changing Django Password

Go to the directory where your settings.py resides: $ python manage.py shell >>from django.contrib.auth.models import User >> users = User.objects.all() >> users (output) [<User: foo>, <User: adminlogin>, <User: bar>] >> user = User.objects.filter(name='adminlogin') >> user.set_password('newpassword') >> user.save() This can be used to...
Read More