Search Results

0
votes
2answers
129 views

DJANGO - How do you access the current model instance from inside a form.

class EditAdminForm(forms.ModelForm): password = username.CharField(widget=forms.TextInput()) password = forms.CharField(widget=forms.PasswordInput()) password_confirm = forms.C …
1
vote
2answers
145 views

How do I store multiple values in a single attribute

I don't know if I'm thinking of this the right way, and perhaps somebody will set me straight. Let's say I have a models.py that contains this: class Order(models.Model): …
0
votes
2answers
152 views

How do I form a URL in Django for what I’m doing

Desperate, please help. Will work for food :) I want to be able to have pages at the following URLs, and I want to be able to look them up by their URL (ie, If somebody goes to a certain UR …
0
votes
4answers
164 views

Grab an image via the web and save it with Python

I want to be able to download an image (to my computer or to a web server) resize it, and upload it to S3. The piece concerned here is: What would be a recommended way to do the downloading …
0
votes
3answers
218 views

Resize image twice in Django using PIL

I have a function in which I'm trying to resize a photo twice from request.FILES['image']. I'm using the image.thumbnail() with the Parser as well. This works fine when I create one thumbnail, but …
-1
votes

How do you do something after you render the view? (Django)

One thing you could do is use middleware to do this. …
-1
votes

Reasons not to use django

One negative about Django (not a reason to not use it) is that you cannot use hard-core regex in your URL patterns, such as negative look behinds or it'll mess up the template tags like url. …
0
votes

Why is Ruby more suitable for Rails than Python?

The only thing different about Rails and Django, besides the clear advantage of a clean Python syntax vs all the ::=>@ stuff included free with ruby, not to mention the extra end end end end end, i …
-1
votes

Correct place to put extra startup code in django?

The best place to put this is into a Middleware class. Just use the Middleware to check things out before your page loads and raise an error if the check fails. …