Well, first of all, this question should really be:
"How do I write a RESTful API using Django and JSON?"
iPads are just like any other web browser (client), and they can use javascript, JSON, etc.
Here's a high level description of what you need to do:
- Write a Django view and map it to a URL, eg: /api/some_action/
- Write out the body of your view, have it perform whatever action you need on the server.
- Write the HTML/javascript code which is displayed on a user's iPad, so that when iPad users visit a part of your website (let's say /home/) they'll make a JSON request to your server which talks to the API (eg, sends some JSON to /api/some_action/)
Once your Javascript code sends JSON to the API view, your view should process that JSON, and perform whatever actions you want.
This is the way most web-services are developed.
Hope that helps!