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

1
vote
3answers
169 views

django test database is not created with utf8

I am using utf-8 general case insensitive for for mysql database, but django creates a test db with latin collation I have set this: TEST_CHARSET="utf8_general_ci" TEST_COLLATION="utf8_general_ci" ...
0
votes
0answers
2 views

Using Scrapy DjangoItem with Django best way

I am am new to Django / Scrapy and well to programming in general. I am trying to make a Django site to help me learn. What I want to do is Scrape product information from different sites and store ...
0
votes
0answers
6 views

Check existing password and reset password

views.py to save the password: elif 'reset_password' in request.POST: if request.POST['reset_password'].strip(): saveuser = User.objects.get(id=user.id) ...
0
votes
0answers
5 views

gunicorn.error : Dummy-1 … Connection in use: ('0.0.0.0', 5000)

I'm using Django and Heroku, and trying to run a local server using foreman start. The app runs fine using ./manage.py runserver, but not so much with foreman start. Here's what my Procfile looks ...
0
votes
2answers
14 views

django select app(s) for syncdb

First of all: please don't ask me: "Why would you need this?". Now the question itself: I have several applications installed in INSTALLED_APPS. Database is now empty and I want to synchronise only ...
0
votes
1answer
12 views

Django datetime not work as expected

I need to calculate and store date one year in the future if some field is True. But seems that datetime doesn't work as I expect. date field is populated correctly but featured_to_date field stay ...
1
vote
0answers
16 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 ...
15
votes
1answer
2k views

Testing Django apps that use South migrations

I'm trying to create some Functional tests for a Django app that uses South migrations. Eventually, I will also be creating Twill tests. When I try to run the existing tests, the test database is not ...
0
votes
0answers
20 views

Referencing a Template from Another App (Django)

I have an app (App1) within my main app, which has a function that renders a template that is stored outside App1. So the structure is something like this for my Django app (where each line is a ...
15
votes
8answers
9k views

Duplicating model instances and their related objects in Django / Algorithm for recusrively duplicating an object

I've models for Books, Chapters and Pages. They are all written by a User: from django.db import models class Book(models.Model) author = models.ForeignKey('auth.User') class ...
1
vote
1answer
18 views

Can django testing with databases be fixed for MySQL?

I have a large django project (AskBot) that I am running the tests for. When I configure DATABASES to use sqlite, the tests pass. When I figure to use PostgreSQL, the tests pass, but when I configure ...
9
votes
5answers
1k views

How do I do a partial field match using Haystack?

I needed a simple search tool for my django-powered web site, so I went with Haystack and Solr. I have set everything up correctly and can find the correct search results when I type in the exact ...
3
votes
2answers
3k views

django getting the absolute path of a FileField

I am trying to retrieve the absolute path (starting with http://) while calling a FileField at the template. How can I achieve this ? ie: {{fl.uploadedfile}} -> returns relative path like ...
0
votes
0answers
11 views

Custom widget (ajax) integrated with crispy-forms

We are migrating are forms to django crispy-forms and I can't figure out how to integrate a custom field / widget into it. Specifically we are using django-selects2 for our ajax selects. Here is our ...
0
votes
2answers
1k views

How to get an ImageField URL within a template?

I've got the following model in my Django app: class Image(models.Model): image = models.ImageField( upload_to='images/', height_field='height', width_field='width' ...
0
votes
4answers
59 views

Python doesn't interpret UTF8 correctly

I know similar questions have been asked a million times, but despite reading through many of them I can't find a solution that applies to my situation. I have a django application, in which I've ...
0
votes
2answers
34 views

Template logic not functioning properly

template.html <tr><td> {% if place %} <input type="checkbox" id="select_all"/>Display all<br /> <hr style="width: ...
0
votes
0answers
25 views

Worker dying after receiving 1000s of tasks at a time in Django Celery

I am running a script that generates nearly 10000 objects. On save of each object, a Celery task will be called, so in just 1-3 min, Celery is receiving 1000s of tasks and its worker is dying (with ...
-1
votes
1answer
17 views

Querying a ManyToMany Field in a Django model

So I have these two models: class Player(models.Model): playerName = models.CharField(max_length= 50) playerTeam = models.CharField(max_length=20) class Role(models.Model): roleName = ...
1
vote
0answers
15 views

tastypie do post in a manyTomany through table relation

Hope someone can help me!! :) I followed this thread django-tastypie and many to many "through" relationships and I did successfully create a manytomany relationship through a table. ...
1
vote
1answer
64 views

how to use custom profiles with django-registration

I'am using a custom user profile with Django 1.5 and i'am trying to use the lastest django-registration version with it but I always get an error when running the sync command. CommandError: One or ...
0
votes
0answers
13 views

Overwriting Manager in Django using django-cache-machine

Since the django-cache-machine override the objects model attribute, the right way to modify the queryset is as follows: class ModelAQuerySet(models.query.QuerySet): def foo(self): ...
1
vote
0answers
28 views

Django “Table already exists” on testing

I've tried to solve the following issue: I'm running python manage.py test to test my application. After creating a new test_app database, I'm getting DatabaseError: (1050, "Table 'auth_group' ...
0
votes
0answers
12 views

IOError: failed to write data - Python Server

Any idea why the following error occurs when uploading image to server?! [Tue May 21 23:44:01 2013] [error] [client 41.236.182.133] mod_wsgi (pid=9639): Exception occurred processing WSGI script ...
5
votes
3answers
146 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
1answer
26 views

Slugify string in Django

I have developed a form, where the user adds his/her first name and last name. For the username (a unique property), I've devised the following method: FirstName: harrY LastName: PottEr --> ...
2
votes
2answers
206 views

How do I create multiple model instances with Django Rest Framework?

I would like to save and update multiple instances using the Django Rest Framework with one API call. For example, let's say I have a "Classroom" model that can have multiple "Teachers". If I wanted ...
0
votes
0answers
23 views

How to solve “Empty static prefix not permitted” error in Django?

I installed Django 1.5.1 with MySQL and mod_wsgi on ubuntu. After I imported my project from local machine to the server, I get this error by visiting all URLs: **ImproperlyConfigured at /** Empty ...
0
votes
0answers
25 views

Reverse for 'django.contrib.auth.views.password_reset_confirm' with arguments '()' and keyword arguments

I follow this code for django reset password: http://drumcoder.co.uk/blog/2010/apr/09/django-reset-password/ I use from Django1.5 and change {{ protocol }}://{{ domain }}{% url ...
0
votes
0answers
14 views

Django fixtures: UnicodeEncodeError

I have a Django model, goes like this: class Employee(models.Model): user = models.OneToOneField(User) name = models.CharField(max_length=30) (User is django.contrib,auth user) I'm trying ...
0
votes
0answers
17 views

Cannot Get Haystack Tutorial Working

I have completed the tutorial for Haystack w/ Whoosh and re-read it about 6 times in the past few hours and cannot seem to figure out what my issue is. Basically, everything seemed to installed ...
0
votes
1answer
43 views

Query to filter by alphabetic order

views.py def type_list(request,type_id): user = request.user try: type_list = Types.objects.get(user=user.id, id=type_id) except: return ...
0
votes
2answers
53 views

How to delete a lot of objects from database

I trying to delete over 20,000,000 objects at once by executing: MyModel.objects.filter(some_field__lt=100).delete() But I can't, because of not enough memory (1GB VPS). Is it bad method or what? ...
0
votes
1answer
16 views

Django forget password

I follow this code: http://drumcoder.co.uk/blog/2010/apr/09/django-reset-password/ but when I run I have this error: File "/usr/local/lib/python2.7/dist-packages/django/core/handlers/base.py" in ...
0
votes
1answer
9 views

adding clocking support to heroku with python django

The article here - https://devcenter.heroku.com/articles/clock-processes-python teaches how to run background jobs in heroku. I have my clock.py file, in the same directory where Procfile is. ...
4
votes
1answer
65 views

How can I load a Django fixture too large to fit into memory?

I wish to load initial data using fixtures as described here https://docs.djangoproject.com/en/dev/howto/initial-data/ This would be easy enough with a small data set. However I wish to load a ...
2
votes
4answers
265 views

is there similar syntax to php's $$variable in python

is there similar syntax to php's $$variable in python? what I am actually trying is to load a model based on a value. for example, if the value is Song, I would like to import Song module. I know I ...
0
votes
0answers
8 views

Django-tables2 - dynamically adding columns to table - not adding attrs to table tag in html

In my Django project I need to have tables which columns are dynamic and depend on what is in the database. So I found a solution in here and it works but with a little problem. Here's the class with ...
0
votes
1answer
22 views

How I validate my Django Form with a File Upload

I want to validate my form but it uploads everytime the whole file before I get the feedback from Django which field is correct or incorrect. Can I prevent the upload or validate it one some other ...
0
votes
0answers
8 views

Return GeoJson with Django

I am trying to return a set of coordinates to draw points/rectangles over a map. Currently I'm using Polymaps, but I'm thinking about moving to openlayers, which has examples more clear for a ...
1
vote
1answer
14 views

Django POST/GET, GET works, POST doesn't from MATLAB (urlread). Both work using django.test.client

I am learning Django so I've set up a very simple form/view/url example Django Version 1.5.1 MATLAB Version R2012A forms.py from django import forms import json class json_input(forms.Form): ...
0
votes
0answers
11 views

Django admin: different list parameters if popup (raw_id_fields)

For simplicity, let say that I have model Product and model Parameters. By default, in model Product I want these settings: class ProductAdmin(ModelAdmin): list_display = ('name', 'brand', ...
0
votes
0answers
21 views

Find related objects and display relation

I am using django-follow to allow users to "follow" objects (for this example lets call these objects film actors) I am pulling back a list of film actors using actors_user_is_following = ...
0
votes
1answer
29 views

limiting the queryset for ManyToMany MultipleSelect in Django admin

I have a model that looks like this: class Event(models.Model): event_dates = ManyToManyField("EventDate") #... class EventDate(models.Model): event_date = DateField() #... ...
1
vote
0answers
16 views

Logging Apache instance name in Django logger

We use the Django logging module for our Django app, which runs on a couple of Apache instances on a server; each instance is a different setup, like production/staging/development/testing. How do I ...
0
votes
2answers
37 views

Convert address to longitude and latitude

I want to do the following - Allow users to input a physical address in ios app. - This address is converted to longitude/latitude - Django server code checks to see nearby locations. How can I do ...
0
votes
1answer
16 views

django form errors. get the error without any html tags

I would like to get on my template the errors of the form in non-html version. by default the error is wrap up by <ul class="errorlist"> which I want to avoid. Anyway to do it without a ...
0
votes
1answer
12 views

Django password reset function

I am a newbie and have read through Django docs. How can I perform the standard password reset function? When a user clicks the "reset password" button, the application should ask for the old ...
1
vote
1answer
20 views

Error 500 and other website's content

I have some small django projects working on the same server with apache and mod_wsgi. I installed another one project with virtualenvironment and set settings for it in Apache conf file: ...
2
votes
1answer
33 views

How to get primary keys of objects created using django bulk_create

Is there a way to get the primary keys of the items you have created using the bulk_create feature in django 1.4+?

1 2 3 4 5 1040