Tagged Questions

0
votes
4answers
16 views

UnicodeDecodeError with Django’s request.FILES..

Hello, I have the following code in the view call.. def view(request): body = u"" for filename, f in request.FILES.items(): body = body + 'Filename: ' + filenam …
0
votes
2answers
33 views

How to pass initial parameter to django’s ModelForm instance?

The particular case I have is like this: I have a Transaction model, with fields: from, to (both are ForeignKeys to auth.User model) and amount. In my form, I'd like to present th …
0
votes
1answer
22 views

How to create Django FormWizard for one Model?

I have Django Model with many fields which user must fill. If I'll create one ModelForm for this Model it will be big enough for one form. I want to split it using FormWizard. I th …
1
vote
1answer
27 views

Clean input strings without using the django Form classes

Is there a recommended way of using Django to clean an input string without going through the Django form system? That is, I'm writing code that delivers form input via AJAX so …
1
vote
2answers
31 views

Django/SQL: keeping track of who who read what in a forum

I'm working on a not-so-big project in django that will among other things incorporate a forum system. I have most of the system at a more or less functioning state, but I'm still …
0
votes
4answers
48 views

Activate virtualenv via os.system()

Hey all, I'm writing a Python-based shell script to boilerplate a Django app with virtualenv, pip, and fabric. Should be straightforward enough, but it appears that I'm not able t …
1
vote
5answers
54 views

Django: Ordering objects by their children’s attributes

Consider the models: class Author(models.Model): name = models.CharField(max_length=200, unique=True) class Book(models.Model): pub_date = models.DateTimeField() author = mode …
1
vote
1answer
91 views

optimizing this django code?

Hi, I'm having some performance issues because I'm making a lot of query calls that I'm not sure how to reduce. user_item_rel_set is a m2m relation between user and items showing …
2
votes
4answers
99 views

Overhead of a Round-trip to MySql?

So I've been building django applications for a while now, and drinking the cool-aid and all: only using the ORM and never writing custom SQL. The main page of the site (the prima …
1
vote
3answers
47 views

How to profile a Django custom management command exclusively

I would like to profile a custom management command that is relatively CPU intensive (renders an image using PIL). When I use the following command I get all sorts of Django module …
1
vote
2answers
35 views

How to implement Symfony Partials or Components in Django?

I've been developing in the Symfony framework for quite a time, but now I have to work with Django and I'm having problems with doing something like a "component" or "partial" in S …
0
votes
2answers
61 views

Django Formsets - form.is_valid() is False preventing formset validation

I'm am utilizing a formset to enable users subscribe to multiple feeds. I require a) Users chose a subscription by selecting a boolean field, and are also required to tag the subsc …
9
votes
8answers
377 views

Experience with Django

Having read some great things about the Django framework I'm becoming quite interested in it. But before making my decision to use it for a small project I would like to hear some …
0
votes
3answers
48 views

What’s the easiest way of finding a child instance from a parent instance in Django?

My application uses class inheritance to minimize repetition across my models. My models.py looks kind of like this: class BaseModel(models.Model): title = models.CharField(ma …
0
votes
2answers
59 views

handling multiple returned objects

I have a contact/address app that allows users to search the database for contact entries. The current view will return an object (Entry()) and display its fields. The code is as f …

1 2 3 4 5 100 next
15 30 50 per page