-
POST
a random JavascriptBlob
to the server- Requires hooking into the
<form>
I just added toAudio Recorder.html
and passing the{% csrf_token %}
- I'll need to put the
blob
in the<form>
data, I know code for that exists somewhere
- Requires hooking into the
-
Change files listed from server to be
<audio>
tags- This is a change to the
templates.v1.list.html
- This is a change to the
-
Integrate the
webaudiodemos
sample code withPOST
s to the server- To handle
POST
s, I need aurl
that routes to aPOST
handler method- This is currently happening in
views.list_saved_files(request)
- This is currently happening in
- That handler sends (references to ?) the files to the template
via
render_to_response()
- To handle
Borrows from