0
votes
1answer
18 views
How to implement objects modification trace
Hi there,
With django admin, we have an history of who altered an object and when. I would like to add an "old value", "new value" to this to be able to roll back if needed.
Plus I would like every …
0
votes
2answers
15 views
Access a model’s field by another field’s value in a template in Django?
Hi,
I don't really know how to describe what I'm aiming at (EDIT: I want a dynamic attribute lookup), but I'm trying to do something like this
<p>{{dict.{{object.field}}}}</p> in a …
-2
votes
2answers
39 views
Changing password in Django.
Hi,
Can any one point me to code where users can change their own passwords in Django?
Thanks.
0
votes
0answers
5 views
gae python optimization: django filter for language support
Hi,
I have a filter that I use for lang support in my webapp. But when I publish it to gae it keeps telling me that it the usage of CPU is to high.
I think I located the problem to my filters I use …
1
vote
2answers
28 views
Overriding __getattribute__ for the Model class in Django
In Django, I need to create a model in which an instance of that model can inherit values from another instance of that model in what amounts to a superclass-subclass type relationship. I created a …
0
votes
0answers
17 views
Changed Django server location, now logins don’t work
I've got a very strange problem. I moved a site from one server to another. There has now been more than enough time for DNS to propagate and as a precaution, I have turned off the old site so people …
0
votes
1answer
39 views
Django and multiple databases
My current Django setup uses MySQL as the main database to store models. Now for my project I need to connect to a remote PostgreSQL database and retrieve data from it. Is it possible to do this by …
2
votes
0answers
19 views
How does Google generate its OpenID claimed_id tokens?
I'm using the django_openid_auth module and have it configured to automatically create new user accounts for new OpenIDs. This makes the "sign up" process really trivial, but I'm a bit worried that …
0
votes
0answers
9 views
django filefield issue
filefield works just fine in the admin, but in a template nothing is uploaded upon submit. the form comes back with a "required" error for the filefield.
the paths seem to be right, and if they …
0
votes
0answers
6 views
Why can’t I see any data in the Google App Engine *Development* Console?
I run my google app engine application in one of two ways...
Directly by using the application from http://localhost:8080
Or execute unit tests from http://localhost:8080/test
When I create …
0
votes
1answer
16 views
Django form not calling clean_<fieldname>
Hello everyone,
I am attempting to validate a form (and it used to work before). For some reason, I can't seem to get the various cleaning functions such as clean_username(self) to get called when …
0
votes
1answer
22 views
How to access other model instance fields from to_python in a custom Django field implementation
How can I access the model instance from a custom Django model field's to_python call?
When I overrode pre_save, for example, I had model_instance as one of the arguments.
to_python only receives the …
1
vote
2answers
42 views
Debugging Django/Python on Dreamhost
Debugging Django on Dreamhost is proving quite the challenge. To my knowledge, print statements aren't available, and neither are logs... any suggestions?
1
vote
2answers
33 views
Django Error: Cannot Import csrf.py
Hello everyone,
My Django app started breaking all of a sudden and I cannot understand why. I can't even get it to run now. I'm running revision 11798.
When I use the stand-alone server to test my …
0
votes
5answers
39 views
MySQL KEY question
CREATE TABLE `django_comments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`content_type_id` int(11) NOT NULL,
`object_pk` longtext NOT NULL,
`site_id` int(11) NOT NULL,
`user_id` int(11) …
