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
35 views

How to upload the django-1.5 application in google app engine?

I have uploaded the my sample CRUD application in google app engine. But it riased error as shown below, Traceback (most recent call last): File ...
-1
votes
0answers
25 views

How to create new instance for existing project?

I am new to google app engine.I am try to deploy the django CRUD application in google app engine.Is it necessary to create an instance for django CRUD application ?. I have enabled the billing for ...
0
votes
1answer
31 views

How patch django application withous errors?

I have django project called project and try patch jsonfield in project/__init__.py: import json import jsonfield def get_prep_value(self, value): if value is None: if not self.null and ...
0
votes
3answers
30 views

Django templates, how to make a list of item's values from list of items

I have list of items: items = [item1, item2, ...] where item1 = {'name': 'item1', 'value': 1} and so on. In templates i have a list of these items: {{ items }} How can i get a list [item1.name, ...
0
votes
1answer
17 views

Heroku gunicorn absence

Trying to upload my Django app to Heroku and getting: 2013-05-22T23:04:55.687398+00:00 heroku[web.1]: Starting process with command `gunicorn main.wsgi` 2013-05-22T23:04:56.508882+00:00 app[web.1]: ...
0
votes
3answers
2k views

Problems with django url template tag, {% url %}

Hello I am trying to pass different urls from my site into a template. I thought it would be done by using this in the template {% url myappname.module.views.urlfunction %} but that returns an ...
0
votes
1answer
11 views

Issue in loading user uploaded images in Django

My urls.py urlpatterns = patterns('', # Examples: # url(r'^$', 'photo.views.home', name='home'), # url(r'^photo/', include('photo.foo.urls')), # Uncomment the admin/doc line below to enable admin ...
34
votes
11answers
7k views

Can django's auth_user.username be varchar(75)? How could that be done?

Is there anything wrong with running alter table on auth_user to make username be varchar(75) so it can fit an email? What does that break if anything? If you were to change auth_user.username to be ...
1
vote
3answers
470 views

Django Admin : Grouped data in the list

Can I show a grouped result in Django Admin? By default, they are showing all rows, I want to group these rows based on some fields, and display it. Something like "GROUP BY username" or stuff. I've ...
0
votes
0answers
28 views

how to get the userinfo using mod_auth_cas from session?

I use mod_auth_cas as the cas client,and here is my conf file in http.conf of apache: CASDebug On CASValidateServer Off CASCookiePath /var/cache/apache2/mod_auth_cas/ CASLoginURL ...
0
votes
1answer
26 views

How Do You Pass New URLs to a Scrapy Crawler

I would like to keep a scrapy crawler constantly running inside a celery task worker probably using something like this. Or as suggested in the docs The idea would be to use the crawler for querying ...
0
votes
1answer
135 views

django Error when upload the file from the admin panel

Hello I have problem when upload large file more than 30MB approximately from the admin panel otherwise the browser throws "The connection to the server was reset while the page was loading" ...
1
vote
1answer
26 views

File downloaded always blank in Python, Django

I am using the following view in Django to create a file and make the browser download it def aux_pizarra(request): myfile = StringIO.StringIO() myfile.write("hello") ...
3
votes
1answer
338 views

Django admin “save and view on site” button

The Django admin site is brilliant, and we use it a lot at my work. My question is this - how do I add an additional button at the bottom, along side the 'save', 'save and continue editing' etc ...
0
votes
0answers
16 views

Django & Heroku: Import error on installed app only when DEBUG=False & on heroku

I recently installed django-notification-1, see code here if necessary. When I run my app on my local development server with DEBUG=True or DEBUG=False everything works fine. On heroku with ...
1
vote
1answer
45 views

django 1.5 extend the default User model or substitute it

Env: Django 1.5.1 + Django CMS 2.4.1 + Zinnia latest + my custom apps + custom Django CMS plugin Basically I can extend the default Django (1.5.X) User model like Django Ribbit Tutorial on NetTuts+ ...
3
votes
1answer
38 views

Django avoid creating testing database for exsting one

I have an existing database "A" with data loaded, that is part of a different project that I'm integrating with. I'm using multi database Django support and storing the stuff I need to persist in my ...
1
vote
2answers
26 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: ...
0
votes
3answers
783 views

jquery datepicker not display on my django project

I am trying to display a datepicker on my web little project with the help of django frame. The case is that when I do the request to my page it displays everithing ok, but the datepicker calendar do ...
0
votes
1answer
268 views

Django error: [Errno 32] Broken pipe

sometimes on my site when I'm working on my local version, I get this error in my console : error: [Errno 32] Broken pipe Does anyone have an idea to where it come from and how to prevent this ...
1
vote
1answer
15 views

load multi-line fixture field from django

In the fixture (in yaml), I set a multi-line field: fields: code: > print(1) print(2) print(3) Then I tried to read it by print(code) however it ...
0
votes
1answer
16 views

django csrf cookie no longer working

I don't understand why, but Django has ceased including the csrf cookie in responses. I have the middleware enabled, have tried using RequestContext and am using render. I have even tried using the ...
0
votes
4answers
374 views

Authenticate by IP address in Django

I have a small Django application with a view that I want to restrict to certain users. Anyone from a specific network should be able to see that view without any further authentication, based on IP ...
9
votes
2answers
9k views

Python vs C#/.NET — what are the key differences to consider for using one to develop a large web application?

My organization currently delivers a web application primarily based on a SQL Server 2005/2008 back end, a framework of Java models/controllers, and ColdFusion-based views. We have decided to ...
0
votes
0answers
8 views

Populate TastyPie Field With Different Resource Content During Hydrate?

How can I best populate a field in a TastyPie resource with the contents of another record during the hydrate process? I have the following hydrate function defined in a resource to populate the ...
0
votes
0answers
10 views

Passing prefetch_related result to template

I have three models: class event(models.Model): ... class artist(models.Model): ... class artwork(models.Model): artist = models.ManyToManyField(Artist, verbose_name=_("Artist"), related_name = ...
0
votes
0answers
15 views

South migration fails/freezes

Here's a hair puller... I have been using the Django South package for some time and love it. Recently, however, migration for 3 of my 5 Django apps are failing/freezing during the process of ...
7
votes
2answers
476 views

Do CSRF attack worries apply to API's?

In particular, I'm writing a Django RESTful API to back an iOS application, and I keep running into Django's CSRF protections whenever I write methods to deal with POST requests. My understanding is ...
0
votes
0answers
23 views

Django Tastypie: including relationship with the same model

I am really stuck with this issue. Here is a simplified version of a model: # models.py class CustomComment(models.Model): comment = models.CharField(max_length=500) parent_comment = ...
0
votes
1answer
14 views

Get profile picture from Facebook using social-auth

I am implementing social login in my application and I am already getting normal fields as First Name, Last Name on Facebook and LinkedIn... Now I want to get the profile picture. I did it for ...
0
votes
2answers
2k views

Forbidden (403) CSRF verification failed. Request aborted

I am making an app of login form but when I am running my app and click on login button the following error will occur Forbidden (403) CSRF verification failed. Request aborted. the code of view.py ...
0
votes
1answer
11 views

passing post data to python api to make a twilio phone call

I would like to send some POST data to the url that will be called once the connection is made in a twilio call. Here is my code: import urllib, urllib2 from twilio.rest import TwilioRestClient ...
0
votes
1answer
15 views

django-hosts force reload of a different urls.py

I am using django-hosts to have different domain names point to one Django app. The bulk of my Django app serves the site at mydomain.com, but one function handles short URLs at, say, mydoma.in. ...
1
vote
1answer
48 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
2answers
37 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
28 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
4answers
70 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
0answers
20 views

Can I avoid cascade deletion when using GenericRelation API?

I'm using GenericRelation in some of my django models and find the provided API very useful. However I would like to avoid the cascade-deletion behavior on some of these. According to GenericRelation ...
1
vote
3answers
172 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" ...
1
vote
0answers
11 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
1answer
20 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 ...
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 ...
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
19 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
15 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
2k 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
2answers
35 views

Template logic not functioning properly

template.html <tr><td> {% if place %} <input type="checkbox" id="select_all"/>Display all<br /> <hr style="width: ...
-1
votes
1answer
25 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 2 3 4 5 1042