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

9
votes
0answers
214 views

How to get instance of socketio namespace

I'm running a gevent-socketio Django application. I have something similar to this class @namespace('/connect') class ConnectNamespace(BaseNamespace): def on_send(self, data): # ... ...
6
votes
0answers
437 views

Can't delete cache for specific entry in Django

I'm trying to purge cache for one specific Entry when it is saved using signals. I'm using decorators (signals and render_to) from django-annoying @signals.post_save(sender=Artigo) def ...
5
votes
0answers
242 views

Django-pydobc SQL server connection problems on windows

Another developer and I are setting up a django (v1.4.2) project using a legacy SQL server database (SQLEXPRESS) on another server. So far, we have been able to connect to the database from linux and ...
5
votes
0answers
289 views

django-mutant creating models in django-admin

I started experimenting with django-mutant 0.0.2 (on django 1.4.2), but due to the lack of documentation I got almost nowhere. The way I understood by the project description I could use it to create ...
4
votes
0answers
605 views

django cms search with multiple sites?

I've set up multiple sites within a single instance of django cms with haystack for search (with Solr). However, the search_indexes.py that I've got doesn't appear to have any effect. It's like it's ...
3
votes
0answers
40 views

Multi-tenant Django applications: altering database connection per request?

I'm looking for working code, war stories, or just ideas (even discouraging ones) from others who have tried to build a multi-tenant Django application using database-level isolation. Goal My goal ...
3
votes
0answers
36 views

how to fix https openid error

I am using local https protocol and fake certificate . When using django-openid-auth give me this error OpenID failed OpenID discovery error: Error fetching XRDS document: (60, 'server certificate ...
3
votes
0answers
100 views

Implement zeromq publisher in django with celery (Broker redis)

i need to implement zmq publisher in django and celery with redis as a broker. But my client doesn't receive anything. tasks.py from celery import task import zmq try: context = ...
3
votes
0answers
165 views

Heroku celery background task

We have a simple task running with django-celery on Heroku. Something like: @task Simple_task(): for line in csv.reader(origin): process_line(line) process_line(line): fields = ...
3
votes
0answers
554 views

gunicorn, nginx (v 1.3.14), django, and gevent-socket.io, on dotcloud

I am trying to deploy gunicorn + gevent behind nginx (v 1.3.14) on dotcloud. I have a few questions about it. I am aiming to adapt the python-on-dotcloud example. So far, I have not been able to ...
3
votes
0answers
124 views

django-cms editors and HTML data attribute cleaned up

Using django-cms 2.4 I need to create pages that contain bootstrap code, but the html5lib used cleans data-* attributes. No matter if you specify valid_element in TINYMCE_DEFAULT_CONFIG. (I still ...
3
votes
0answers
184 views

Wrong url with Django Sorl thumbnail with Amazon s3

I am having a very strange error in using sorl thumbnails in my django project which uses S3 for media files. I have done my settings as pointed out in this answer ...
3
votes
0answers
276 views

Foreign key as required field on Django 1.5 configurable user model, createsuperuser says: AttributeError: 'NoneType' object has no attribute '_state'

Using the new Configurable user model from Django 1.5 (1, 5, 0, 'beta', 2) I get this error while running manage.py createsuperuser trying to set a foreign key of a required field: AttributeError: ...
3
votes
0answers
121 views

Django-CMS AppHooks with conflicting urls?

I'm trying to use django-cms app hooks in a different way. I have only an app, with different website pages. For each page, i created an AppHook, since i want to have control of all of them with the ...
3
votes
0answers
151 views

What permissions does django-storages require for an s3 IAM user?

As the question asks, what are the minimum required permissions for a locked down s3 IAM user to use django-storages successfully? At the present time I've used something like { "Statement": [ ...
3
votes
0answers
155 views

Hierarchical tree navigation in Django

I am looking for the best way to implement a tree navigation system in my Django app. I have a hierarchy of pages, and I need a way to set links as active on the various levels of the hierarchy. The ...
3
votes
0answers
232 views

PyCharm 2.5 TestRunner cannot import specific module

I've upgraded to PyCharm 2.5 and in the meantime upgraded django-templated-email to version 0.4.3. Now, Django unit tests do not longer work through PyCharm, as I'm getting the error ImportError: ...
3
votes
0answers
417 views

Django Admin inline for recursive ManyToMany

I have the following model with a many-to-many relationship to itself class Ticket(models.Model): STATUS = ( (0, "Open"), (1, "Closed"), ) status = ...
3
votes
0answers
278 views

Django unit tests spews database error - cannot commit transaction - SQL statements in progress

I'm using unittest2 together with manage.py test, and before it even seems to run any tests, it spews a horrid database error, as below. I'm in my development environment (actually on a dreamhost ...
2
votes
0answers
14 views

Tastypie: same query than in views but no matches

I'm using this query in tastypie resource but i didn't have any result: In the views i have the same query and it's working, i don't understand why Tastypie doesn't get my posts. I get "No Post ...
2
votes
0answers
16 views

Django's cascade delete is executing the DELETE SQL twice

I've got an odd situation here, any idea why the delete SQL for the myapp_entry_tag table is being performed twice? >>> from myapp.models import Tag >>> from django.db import ...
2
votes
0answers
40 views

Django: CBV method form_valid() not called

In my CreateView class I am overriding the form_valid() function as follows: class ActionCreateView(CreateView): model = Action form_class = ActionCreateForm success_url = ...
2
votes
0answers
26 views

Use Django 1.5 StreamingHttpResponse to deliver reportlab pdf

just wondered if anyone have done pdf generation using reportlab and the new StreamingHttpResponse objects that are supported in Django 1.5; ...
2
votes
0answers
47 views

django-cms “summary view” aggregating content from multiple pages

Django==1.5.1 django-cms==2.4.1 I'd like to make something like a summary view from all the child pages of a selected page in django-cms, pulling out title, truncated content etc with a more... link ...
2
votes
0answers
22 views

use xml schemas to create dynamic django models

Is there any approach to use XML schemas to create tables. also I want to know whether I can use that approach with dynamic tables as well updated: <?xml version="1.0"?> <xs:schema ...
2
votes
0answers
51 views

Searching for a project skeleton for Chef + Django on Linux

Is there a pre-existing, best practices project skeleton for Chef + Django web applications on Linux (Ubuntu preferably)? For production Django systems our preferred setup is Supervisor, Nginx, ...
2
votes
0answers
36 views

Django: user.has_perm always true and user is not superuser. Why?

I assigned a permission of a user in my Django 1.5 app. When I list all user permissions with In [1]: user.get_all_permissions() Out[1]: set([u'profile.change_profile']) I can see one permission ...
2
votes
0answers
68 views

Python/Django 1.5 DatabaseWrapper thread error

Throwing the following DatabaseError in Django 1.5.1 (and 1.5.0) and mysql when I runserver and attempt to load a local version of the web app: DatabaseError at / DatabaseWrapper objects ...
2
votes
0answers
65 views

convert textarea of crispy form into rich text editor?

Can anyone tell me the best way to convert a simple textarea of crispy form into a rich html text editor. i tried many time but tinyMCE woks only on normal form not on crispy form. i am new to django ...
2
votes
0answers
61 views

Error when switching Django project to gunicorn server in virtualenv

I have a project that creates objects that I would like to key with uuids. When I run this project with the simple Django test server in manage.py everything works great. However I am trying to deploy ...
2
votes
0answers
49 views

Unable to access Google Cloud SQL instance in dev_appserver with Django

I recently updated my GAE SDK and soon after the update, it has started acting up. I am using Google Cloud SQL in backend with Django 1.4.3. On my local dev server, it gives the following error : ...
2
votes
0answers
48 views

How to update a user's `extra_data` after they have been associated with account?

I've successfully managed to use django-socialauth to associate an account (in this case, an instagram account) with an existing user account. I've also set up my pipeline to collect additional user ...
2
votes
0answers
78 views

Having trouble integrating BIRT with Python Django

I am trying to integrate BIRT with Python Django. I created a form in Django that lets the user input parameters to a report. When the form is submitted, the view takes the parameters and creates a ...
2
votes
0answers
115 views

Django display a complex formset

I'm trying to display a complex modelForm formset in a table. My models are something like this: class Parent(models.Model): # whatever pass class Child(models.Model): CHOICES1 = (1,2,3) ...
2
votes
0answers
82 views

Django double inner join with mysql slow

Why is this query slow in Django using MySQL? I have three models I'm filtering on that relate to each other with a OneToOne and ForeignKey. The following query on my DB with approximately 60k rows ...
2
votes
0answers
176 views

Django with IOS: getting multipart data (json + image) via POST

I'm new to both Django and IOS. I got stuck in this multipart data passing and need your advice! Currently, I am working on an image-uploading function. From client side, I want to send the image ...
2
votes
0answers
93 views

Unable to bound form data after upgrading to django 1.5.1

I just upgraded from django 1.4.5 to django 1.5.1, and noticed that all my form processing code stopped working. Specifically, the form data returned with POST cannot be found anymore. Django code - ...
2
votes
0answers
158 views

reverse() argument after ** must be a mapping

I have an inscription form that doesnt work when submitting I get this error : reverse() argument after ** must be a mapping, not str This is my view : def inscription(request, seance_id): ...
2
votes
0answers
106 views

Paginate relationship in Django REST Framework?

We are using Django REST Framework for our API and we have a need to paginate relationship fields that return multiple items. To demonstrate using examples similar to those in the documentation: ...
2
votes
0answers
82 views

django-celery consumer can not receive tasks

Installation I am using django(1.4) celery(3.0.13) with RabbitMQ(v3.0.4), the backend db is sqlite. Celery was installed by pip install django-celery Setting In setting.py: # For django-celery ...
2
votes
0answers
64 views

Sort envelope in each category

I'm having a problem in sorting categories and envelopes together. I first create the sorting of categories and it works. Then I create next the envelope. When I drag one of the envelope, the data ...
2
votes
0answers
179 views

Django 1.5 - using the new StreamingHttpResponse

If I implement StreamingHttpResponse as shown here, the 'streaming' response is not shown until the 10 seconds is up. There isn't much information on djangoproject except saying it's useful for ...
2
votes
0answers
95 views

Form preview Django

I'm trying to use django's FormPreview but can't get it to work properly. Here's my code: models.py class jobpost(models.Model): CONTENT_CHANNELS = ( ('Full Time','Full Time'), ...
2
votes
0answers
50 views

Django and Oracle nested table support

Can Django support Oracle nested tables or varrays or collections in some manner? Asking just for completeness as our project is reworking the data model, attempting to move away from EAV ...
2
votes
0answers
90 views

Is possible to use django_compressor/S3/gzip?

How is possible to use django_compressor to send gziped files to Amazon S3? I tried in several ways but it didn't work. Here is my last settings.py configuration: COMPRESS_ENABLED = True ...
2
votes
0answers
91 views

How to enable partial matching in Django Haystack with Xapian

I have downloaded xapian-core and xapian-bindings and installed them via the following commands ./configure --prefix=/path/to/virtualenv ./configure --prefix=/path/to/virtualenv --with-python pip ...
2
votes
0answers
142 views

Django Tastypie: ValueError: Cannot assign “object”: instance is on database “default”, value is on database “slave”

Currently I use Django Tastypie as my REST api. My Django app writes to a remote Master PostgreSQL database and reads from a remote Slave PostgreSQL database. I achieved this using dbrouters as ...
2
votes
0answers
157 views

django-compressor, LESS, relative @import and relative url()

I'm using django-compressor + LESS. I have a problem with relative @import inside .less file and relative url(../image.png) in included .less file. I will explain. I have next folder structure: ...
2
votes
0answers
362 views

How to set up backbone and tastypie to properly send the api_key and username when doing a POST request

When I do a request through curl, passing the username+ApiKey through the url like: curl --dump-header - -H "Content-Type: application/json" -X POST --data '{"question": "Is a test yo?", "pub_date": ...
2
votes
0answers
289 views

Django 1.5 rc1 admin user creation form with custom fields

I could not find a way of showing the customized user's custom required fields on the 'add new user page' of admin. I have created a custom user that extends AbstractUser and added three required ...

1 2 3 4 5 197