Creating a Virtual Development Server for Django projects: Part 1
In this article, we talk about how to configure a Django development environment using VirtualBox as a development server, and your host machine as a...
In this article, we talk about how to configure a Django development environment using VirtualBox as a development server, and your host machine as a...
This is the second part of our tutorial, check out Part 1 if you haven’t already! If you, the reader, have some server admin-fu and have come to...
There are a lot of text editors and IDEs for a popular language such as Python, and we’ve already featured Eclipse/PyDev before. Today, we’ll focus...
Using Eclipse with PyDev as an IDE for your development on your Django project can be very helpful in many ways. Since it is integrated, the eclipse...
In Django 1.3 deleting a record of a filefield will not automatically delete the file associated with the record. This is done to prevent data loss...
When customizing Django forms, you usually have to add it on the forms definition using the widget. Say for example you want to add a class attribute...
In our previous post, we discussed Django-tinymce, a JavaScript WYSIWYG editor that converts an HTML textarea field into an editor instance. Again,...
In our previous post, we discussed Django-tinymce, a JavaScript WYSIWYG editor that converts an HTML textarea field into an editor instance. Again,...
TinyMCE is a JavaScript WYSIWYG editor that converts an HTML textarea field into an editor instance. django-tinymce is a Django application that...
Reducing css and javascript page load size is integral to web development. Minimization will reduce web page size as well as the overhead cost of...