1Read about request objects that your views receive: https://docs.djangoproject.com/en/dev/ref/request-response/#httprequest-objects
2
3Also your hidden field needs a reliable name and then a value:
4
5<input type="hidden" name="title" value="{{ source.title }}">
6Then in a view:
7
8request.POST.get("title", "")