I am trying to pass some parameters from my django template to kaltura .
Here is what I have done so far .
<form id="kalturarequest" action="www.kaltura.com/api_v3/" method="post" enctype="multipart/form-data">
{% csrf_token %}
<input type="hidden" id="ks" name="ks" value=""/>
<input type="hidden" id="service" name="service" value="uploadToken" />
<input type="hidden" id="action" name="action" value="upload"/>
<input type="hidden" id="uploadTokenId" name="uploadTokenId" value=""/>
<input type="file" name="fileData" id="fileData"/>
<input type="submit" onclick="return Checkfiles();" class="btn-primary upload-btn-height" id="uploadBtnNew" value="Submit" />
</form>
But instead of posting form to www.kaltura.com/api_v3/
address this is posting the form to mysite itself .
PLease help me how can I make it working so that this form should POST to www.kaltura.com/api_v3/ instead of localhost:8000/www.kaltura.com/api_v3/