0
votes
2answers
134 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
147 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
1answer
109 views
How do I decipher a dynamic URL magic in Django
url(r'^([a-zA-Z0-9/_-]+):p:(?P<sku>[a-zA-Z0-9_-]+)/$', 'product_display', name='product_display'),
url(r'^(?P<path>[a-zA-Z0-9/_-]+)$', 'collection_display', name='collection_dis …
0
votes
2answers
159 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
3answers
246 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 …
0
votes
1answer
70 views
A way to use method parameters in django templates?
I know there is a post here: http://stackoverflow.com/questions/1333189/django-template …
0
votes
5answers
133 views
How do I override delete() on a model and have it still work with related deletes
class Widget(models.Model):
title = models.CharField(max_length=255)
class WidgetFile(models.Model):
widget = models.ForeignKey(Widget)
def delete():
# do some custom …
0
votes
2answers
64 views
How should I build this Django model to do what I want
This is what I had before (but realized that you can't obviously do it in this order:
class MasterAdmin(models.Model):
"""
A permanent admin (one per Account) that shouldn't …
0
votes
2answers
50 views
Django: How do I validate unique_together from within the model
I have the following:
class AccountAdmin(models.Model):
account = models.ForeignKey(Account)
is_master = models.BooleanField()
name = models.CharField(max_length=255)
…
-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.
…
2
votes
Django template dir switching
Hey SleepyJames,
You can set multiple template directories in your settings file and Django will search them in the order that you list them. Problem is that it doesn't care if you want tem …
2
votes
Good opensource django project for learning…
This is a great list of projects. If you scroll down, you'll see a lot of open source projects. You can download them and view the models/views, etc: …
1
vote
How do I override delete() on a model and have it still work with related deletes
I figured it out. I just put this on that Widget model:
def delete(self):
files = WidgetFile.objects.filter(widget=self)
if len(files):
for file in files:
…
-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.
…
