Django is an open source web application framework. Written in Python, it follows the MVC (model-view-controller) architectural pattern. Django's primary goal is to ease the creation of complex, database-driven websites. It emphasizes reusability and "pluggability" of components, rapid development, ...

learn more… | top users | synonyms | django jobs

1
vote
0answers
4 views

How to clear / maintain a django-sentry database?

I am using django-sentry to track errors in a website. My problem is that the database has grown too big. The 'message' table and the 'groupedmessage' are related Is there any way to clear older ...
0
votes
0answers
4 views

Images missing after moving Django to new server

I'm moving Django project to new server. I'm newbie in Django, and I don't know where should be upload folder. There are all images which should be displayed on website. In config file I haven't seen ...
0
votes
0answers
4 views

Django_settings_module error

I am getting this error.I want to know how to set DJANGO_SETTINGS_MODULE. Error: Could not import settings 'src.settings' (Is it on sys.path?): No module named src.settings my settings.py file ...
0
votes
0answers
12 views

Why does cloning the django inline formsets result to forms with similar ids and names?

In my project I use django inline formsets. I got the jquery to clone the formsets but unfortunately the cloned forms have the same names and ids and so data entered in the last one overwrites the ...
1
vote
1answer
10 views

suddenly I'm getting DJANGO_SETTINGS_MODULE is not defined when using runserver

The full error is: ImportError: Could not import settings 'app.settings' (Is it on sys.path?): No module named settings The whole time, python manage.py runserver has been working fine, and ...
0
votes
2answers
14 views

Django - Render to Response

I am using the following code in my Django view data = {'d':['a','b','c']} return render_to_response('login/invalid.html',data) Now i want my invalid.html page to have the code to convert the list ...
0
votes
0answers
12 views

Django Models referencing

i am tring to create a django models with following fields Ruleinfo(Character field) Ispname(Character field) Priority (Character field) From (Character field) To(Character field) Mine problem is ...
0
votes
0answers
9 views

PyCharm doesn't understand custom Manager of model

I extend default model manager and add cache-specific logic to it: class ReadOnlyManager(manager.Manager): use_for_related_fields = True def create(self, **kwargs): obj = super(ReadOnlyManager, ...
1
vote
0answers
8 views

Controlling the i18n language in jinja2 / coffin without passing a request every time

I am trying to render a template to a string in a particular language, but without passing the request or RequestContext to render_to_string every time. I'm using ...
0
votes
1answer
14 views

Django nonrel Models

I have been looking at the documentation on django nonrel but think i have confused my self. I have a project using the setup instructions found at ...
0
votes
1answer
19 views

returning json output from multiple table in django tastypie

I have extended django User with my custom fields , now i need to return a json output from custom table along with username form parent table . I tried select_related in query set but it is not ...
0
votes
1answer
20 views

settings import error in django using virtualenv

I am using ubuntu 12.04.I am using virtualenv and on that I installed all the packages those I required.When I run the project it gives me error but when I run another project it works. I am using ...
0
votes
3answers
28 views

DatabaseError unable to open database file

My sqlite db file is this: unable to open database file i chowned all folders until my dbfile to root. but i am still getting this error. but i remember that while creating my django project on ...
0
votes
1answer
22 views

django post_save call from within sending Model?

I have a pretty simple model that works: class Badge(models.Model): name = models.CharField(max_length=16, help_text="Name for Badge") category = models.ForeignKey(BadgeCategory, ...
0
votes
0answers
25 views

What the load testing data means?

We have a Django application. Our setup is Ngnix + gunicorn on a AWS instance with postgres on a different instance. I used blitz.io to do load testing. I got the following result This rush ...
1
vote
2answers
37 views

using request.user.is_authenticated() in Django project

When I try to do request.user.is_authenticated() I get a ValidationError: None is not a valid ObjectId I'm trying to track down the problem but I do not what's causing it.I'm using MongoEngine (and ...
0
votes
1answer
13 views

Django - passing extra arguments into upload_to callable function

I know that you can use the upload_to parameter to pass a callable function to dynamically alter a FileFied/ImageField, etc. in a Django model. The function called by upload_to is passed 2 ...
1
vote
2answers
21 views

In Django models, does accessing a foreign key multiple times slower than storing it to a temp variable?

E.g. models: class Player(models.Model): Team = models.ForeignKey(Team) From an efficiency point of view, if you access the "team" of a player multiple times, is it more efficient to store the ...
0
votes
3answers
39 views

TypeError: 'str' object is not callable (django/python)

I've checked a ton of other answers here, and I could use another set of eyes on this error. I am attempting to build a REST-type JSON API for my app, and while I'm testing it, I keep getting a ...
0
votes
0answers
7 views

ProxyPass with Apache, pass through django/db-backed basic auth?

I am using Apaches ProxyPass directive to send requests to my /api/ app to a different WSGI controller. This works fine, but my api app also contains a basic http auth handler, that is backed by a ...
0
votes
0answers
11 views

Can I make it so that only certain fields are changeable with a PATCH?

I have already made it so that only the object's owner can call a PATCH command on a resource, but I would like this user to only be able to update certain fields within this resource. I can do this ...
0
votes
0answers
14 views

installing django 1.3 for appengine w/ python 2.7 needs settings.py and more

How can django 1.3 or higher be installed with appengine using python27 by someone who is just starting out and not upgrading python nor django? I have read several pretty good blogs and instructions, ...
4
votes
1answer
33 views

Django create report

class Beverage(models.Model): name=models.CharField(max_length=255) def __unicode__(self): return self.name class Location(models.Model): name=models.CharField(max_length=255) ...
0
votes
1answer
25 views

Populating Django Form With JavaScript

I'm attempting to pass the lat, long using HTML5 geolocation to automatically populate two form fields in a Django form using JavaScript. I've found a new solutions, but the form is a Meta class form ...
0
votes
1answer
20 views

getting django Url template tag to return something useful:throws reverse error

trying to use the Django {%url %} template tag and keep failing. the view is defined in sitename/transfers/views.py (where transfers is the django app name): def ...
0
votes
0answers
14 views

How can I add a textfield via button click with javascript and django

I have a jsonfield in my django project and i was wondering how i can have button to add textfields I have a good start and a basic idea of how it can be done but i feel my code right now is a little ...
1
vote
3answers
28 views

Django Newbie: python manage.py syncdb error?

Working on the Django tutorial at the moment and got this error when I tried: python manage.py syncdb Using sqlite3 Traceback (most recent call last): File "manage.py", line 10, in ...
0
votes
0answers
24 views

Using pg_restore on dump file

I have an PostgreSQL database on Heroku I'm trying to copy to my local machine. I created a backup of the database by doing: heroku pgbackups:capture This create a dump file of the database which I ...
0
votes
1answer
17 views

django nonrel and the admin

I am looking to use django non-rel on app engine for an upcoming project and would like to know. Can I make use of the django admin, to create news articles in django non-rel or do I need to code my ...
0
votes
1answer
21 views

Serving static files in Django development

I have a problem serving static files in development using Django 1.4 STATIC_ROOT = 'C:/projects/foobar/static/' STATIC_URL = '/static/' STATICFILES_DIRS = () In my templates I refer to this as ...
0
votes
0answers
33 views

Django referral system like dropbox one

I want to implement a referral system to my system where registered users can invite other people by emailing their referral link (ie /register/referral/123123/ ) just like dropbox one ( and if a ...
0
votes
2answers
38 views

High CPU usage by Django App

I've created a pretty simple Django app which somewhat produces a high CPU load: rendering a simple generic view with a list of simple models (20 of them) and 5-6 SQL queries per page produce an ...
2
votes
1answer
24 views

Django: uploaded file encoding issues

On the development platform upload works just fine, but when I deploy and test on the server upload fails with the following error UnicodeEncodeError at /upload 'ascii' codec can't encode characters ...
0
votes
0answers
11 views

RadioSelect retain value after form validation error on another field

I have a simple form as such: class SignupForm(forms.Form): username = forms.CharField(label=_(u"Username"), required=True) gender = forms.ChoiceField(label=_(u"Gender"), ...
0
votes
0answers
6 views

Twilio Django CertificateValidationUnsupported SSL error

So I've installed twilio on my computer, and I'm trying to use it in my django application. I have everything set up properly, and can send sms messages view python command line, but as soon as I try ...
0
votes
0answers
35 views

associate column names with the actual data(csv file)

I am using Json field to store CSV contents. Suppose a user uploads a CSV File. Phone Sex Mobile 23 M Iphone and later the same user uploads another CSV file. Keyword Mobile Logitech ...
0
votes
0answers
8 views

How can i install external pinax projects?

I try to deal with poor documentation of Pinax. I found this project https://github.com/pinax/pinax-multiblog-project what i want is that install it. I normally install a project called account ...
0
votes
0answers
19 views

Are there any battaries to merge django users?

I need to merge two users in django database. So I wonder if there is any simple way (may be special app) to do that? For example: we have user_a and user_b. And some models that have foreign keys to ...
0
votes
1answer
7 views

Django urlencode template filter

I'm attempting to URL encode a string that contains slashes in Django 1.3 using the optional argument shown in the docs: {{ someString|urlencode:"" }} However, the slashes aren't getting URL ...
0
votes
1answer
14 views

Putting together Haystack records without templates

The haystack documentation (link below) makes this statement: Additionally, we're providing use_template=True on the text field. This allows us to use a data template (rather than error prone ...
0
votes
2answers
23 views

How to override django static file developpment server?

I am beginning to use the application 'django.contrib.staticfiles' to collect static files into the /static/ directory of my project. The problem is that, when I am using the django developpment ...
0
votes
0answers
10 views

Django - best way to debug LiveServerTestCase testing (error on POST)

I am updating all my selenium tests from django-nose to use Django 1.4's LiveServerTestCase. Problem is, I've set up a test case in exactly the way they want, but only GET is working (cannot POST to ...
0
votes
0answers
7 views

NyroModal Ajax Form

I'm using NyroModal to load a form inside /form/ (Django Form) - when I submit the form to test validation, the content inside the lightbox fades and the whole page refreshes. How do I make sure the ...
1
vote
0answers
31 views

Django - Accessing request META data from production

I'm trying to send a list of datetimes to the client by JSON formatted as its locale. So the main issue is actually trying to get the locale of the client. I tried to use request.META['LC_TIME'] ...
0
votes
0answers
13 views

Modify form fields in FormWizard (Django 1.4)

Consider the following classes: models.py: class Data(models.Model): first_name = models.CharField() checkbox_1 = models.BooleanField() checkbox_2 = models.BooleanField() forms.py: ...
0
votes
1answer
15 views

What is the method to use a django model in a non django application?

I am trying out webpython.codepoint.net as a way of learning python web programming at a basic level and I want to use a django model in it, as a way of including a django model in a non django ...
0
votes
1answer
27 views

Django - Change default locale

Trying to understand L10N implementation into Django, Here are my settings LANGUAGE_CODE = 'fr-FR' USE_L10N = True If I try >>> datetime.datetime.strptime('2012-05-30 15:30', '%Y-%m-%d ...
0
votes
0answers
20 views

Django authentication through jquery modal and ajax

In my application I use authentication (django.contrib.auth). I chose to prompt the user to login using a JQuery modal. It works. If the authentication succeed - it is redirected to the page I've ...
0
votes
0answers
18 views

Custom Permissions in Django with Problematic Model

My current project involves a legacy codebase which makes use of Django's models in a limited way; syncdb isn't being used (i.e., the model is not Django-managed). I need to restrict access to ...
0
votes
1answer
32 views

How to force Django to do a case sensitive comparison?

Because of the way our databases are collated they ignore case for usernames and passwords, which we're currently unable to fix at the database level. It appears from this thread that WHERE BINARY ...

1 2 3 4 5 663