Third-party data entry

2013-04-03 Thread forthfan
Hello all, Is there a package available that would let the user request data from another party? For example, you have all the data filled in for a shipment and you need the Bill of Lading number from the shipper. When the shipper provides it, it goes into the dataset for the shipment without

django.shortcuts redirect doesn't pass argument

2012-08-05 Thread forthfan
Hi all, I'm trying to pass a filepath from one view to another by using 'redirect' from django.shortcuts, but the argument is not getting passed. What am I doing wrong? def upload1(request): if request.method == 'POST': form = UploadFileForm(request.POST, request.FILES) if form.is_va

Read from an uploaded file and put data in a form for automatic Django validation

2012-07-28 Thread forthfan
Hi all, Being lazy, I want Django to validate the stuff I read from an uploaded file as if it were being posted. Is there a nice way to do this? -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https:/

How to call RegexValidator explicitly?

2012-05-23 Thread forthfan
Hi all, I see in docs.djangoproject.com/en/dev/ref/validators/ how to include validators in a form field, but I have a field that needs to be validated with a regular expression determined by another field. Please help me call RegexValidator explicitly the right way. For one thing, I don't see ho