Django is an open source Web 2.0 application framework, written in Python. Its primary goal is to ease the creation of complex database-driven websites.

learn more… | top users | synonyms | django jobs

0
votes
1answer
76 views
+200

Programmatically select the first suggestion in django-autocomplete-light

How can I select the first given option? I'm feeding the autocomplete widget with the data from reverse geocoding results (city) basing on user's location. I have a database with cities and I need to ...
5
votes
3answers
147 views
+100

django logging set context globally per request?

Lets say I want to log like this formatting string : %(levelname)s %(asctime)s %(module)s %(funcName)s %(message)s %(user_id) It can be done using this type of logging command : ...
1
vote
0answers
20 views
+100

I18n does not seem to work while modeltranslation does (a bit)

I need to implement internationalization in my project, so i want to use i18n for static content while i use the app django-modeltranslation for the models. I support the following languages: en-us ...