Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
210 views

What to use for tagging in Django 1.1

Unless I'm missing something, it seems django-tagging (0.3) doesnt work on Django 1.1.x. I was having issues then search around and it seems to be the general concensious. What are other people ...
1
vote
1answer
229 views

What would cause a Django template for loop to raise a Key Error?

I upgraded a working Django app to 1.1 and I now get a KeyError exception on a for loop! Template error In template /vol/.../templates/base_bbn.html, error at line 7 Caught an exception while ...
0
votes
1answer
44 views

Django: sending GET messages

I'm using Django 1.1 on a project. And I ran into a problem. I need to load/send GET to external URL. I want to create method that would act like this: def Send_msg(object): converted_url = ...
0
votes
1answer
308 views

django one session per user

based on docs ( http://docs.djangoproject.com/en/1.1/topics/http/sessions/ ) (yes - 1.1) Django creates unique sessions to all users. Logged user contains _auth_user_id. How can i achieve such check ...