Fri 08 May 2020 web Django on a production server Is your Django project ready for production? Follow this guide to bring your Django project on a production server. Quick and easy!
Thu 22 October 2015 snippets A simple script to update a DB migration in Django 1.7+ During the development of a Django model on your local machine is it often necessary to refine the most recent migration to cope with updates to the model, without polluting the migrations of the app with a new migration for each local update. South had the update flag for the …
Wed 10 September 2014 web How to add a group choice combo box in a Django user profile form Assume that you have a Django project where each user belongs to just one group, say Registered or Admin, but not both. You want to show a form in your front-end to let Admin users edit the user profiles, where each user profile is made with First name, Last name …
Wed 25 June 2014 web PUT and DELETE HTTP requests with Django and jQuery Discover how you can support PUT and DELETE HTTP requests in your Django project using jQuery. Add a REST touch to your project!