september 2007
-
djangogigs.com - From Idea to Release in 6 Hours posted by Andrew
Read more...Yesterday afternoon around 2 p.m, Scott and I had an idea to develop a job/gig board for people looking for Django developers. I know there's the Developers for Hire page which shows some projects, and there are also some posted in the Google groups but there didn't seem to be a good dedicated site just for this purpose, so we thought we'd give it a go.
Since we're both freelance developers and used to ...
-
Hijaxing Form Submission: Writing The View posted by Andrew
Read more...After writing about how to use Mootools to hijax form submission I thought I should follow it up with how to integrate this with the backend code. In this case it's Django, so all of the code is contained in a view which will simply return HTML in response to a regular POST and JSON to a XMLHttpRequest. Below is some sample code which demonstrates the idea:
def contact(request): """Sample view to demonstrate using newforms with both hijaxed ...
