Tagged Questions

1
vote
1answer
16 views

Django: How to filter User’s that belong to a specific group

I'm looking to narrow a query set for a form field that has a foreignkey to the User's table down to the group that a user belongs to. The groups have been previously associated b …
3
votes
3answers
54 views

Truncating unicode so it fits a maximum size when encoded for wire transfer

Given a Unicode string and these requirements: The string be encoded into some byte-sequence format (e.g. UTF-8 or JSON unicode escape) The encoded string has a maximum length …
0
votes
2answers
39 views

Getting error when INSERT into MySQL.

_mysql_exceptions.Warning: Incorrect string value: '\xE7\xB9\x81\xE9\xAB\x94...' for column 'html' at row 1 def getSource(theurl, moved = 0): if moved == 1: theurl = …
1
vote
1answer
19 views

App Engine model filtering with Django

hi i am using django app engine patch i have set up a simple model as follows class Intake(db.Model): intake=db.StringProperty(multiline=False, required=True) #@permerlink …
0
votes
3answers
36 views

Why do I need to save this model before adding it to another one?

In django, I'm trying to do something like this: # if form is valid ... article = form.save(commit=False) article.author = req.user product_name = form.cleaned_data['product_name …
0
votes
1answer
43 views

GUI for managing Django models

Is there a GUI tool using which I can design new Django models graphically? For example, drawing lines between fields in different models to indicate a foreign key. Modifying exis …
0
votes
2answers
34 views

Navigation menu using Django templates

Trying to work with a trivial navigation menu using django templates, I'm having trouble setting the current class on a particular menu item. Here's my base template: <!DOCTYPE …
0
votes
1answer
14 views

“Permission Denied” in Django template using Djapian

I've followed the Djapian tutorial and setup everything "by the book" so that the indexshell commandline supplied by Djapian shows successful queries. However, when integrating th …
0
votes
4answers
28 views

How can I use SQLITE with DJANGO on WIndows 7

I am following the tutorial on the DJango site, which I previsouly did using Windows XP and everything went fine, but on Windows 7 I get the following error: sqlite3.OperationalEr …
1
vote
1answer
30 views

Django / Python / PIL / sorl-thumbnail generation in bulk - memory error

hi folks! I'm trying to bulk generate 4 thumnails for each of around 40k images with sorl-thumbnail for my django app. I iterate through all django objects with an ImageWithThumbn …
0
votes
2answers
14 views

Appengine reference order

I have declared models in AppEngine's models.py: class Post(db.Model): topic = db.ReferenceProperty(Topic, collection_name='posts', verbose_name=_('Topic')) (..) class Topic(db.M …
0
votes
3answers
55 views

django embedding user id into URL template best practice

I'm building a navigation menu in my django app, and one of the options is "My Account". There are different roles I have for users, but in order for them all to view their profile …
0
votes
2answers
34 views

django template url function not matching in app

I have a django project set up with an app called pub. I'm trying to set it up so that I can include urls.py from each app (there will be more as I go) in the top-level urls.py. …
0
votes
2answers
32 views

Django Html email adds extra characters to the email body

I'm using Django to send an e-mail which has a text part, and an HTML part. Here's the code: subject = request.session.get('email_subject', None) from_email = request.ses …
0
votes
0answers
16 views

Can I put Hudson Plots on the project page?

I've got Hudson up and running, building Django and Python projects I'm working on. I've found and am using the [Plot plugin][2] to graph Pylint scores, by extracting them with Aw …

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