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.
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
2answers
25 views
validating white space,empty space and integer
How to validate white space,empty space and integer in a single method.Consider my forms.py
class UserprofileForm(forms.ModelForm):
class Meta:
model = Userprofile
...
0
votes
2answers
28 views
how does the “Favourate” button in StackOverFlow works?
i am creating a forum for my website. i would like to know how does the "This is your favourate question" button in StackOverFlow webpage(ie this website) works?
i am using django.
i created models ...
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 ...
0
votes
1answer
21 views
stale content types while syncdb in Django
While I'm trying to syncdb for my django project, I'm seeing following complains:
The following content types are stale and need to be deleted:
reviews |
Any objects related to these content types ...
0
votes
3answers
28 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
33 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 ...
0
votes
1answer
23 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
2answers
20 views
Django queryset exclude() with multiple related field clauses
I am creating a sparse preferences table in Django. My model is simple:
class Preference(models.Model):
user = models.ForeignKey(settings.AUTH_USER_MODEL, related_name='preferences')
...
0
votes
2answers
54 views
uWSGI error: "Error opening file for reading: Permission denied'
I am experiencing the exact same error described here:
uWSGI Server log…permission denied to read file...which file?
uWSGI keeps throwing me "Error opening file for reading: Permission denied" in ...
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
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")
...
1
vote
1answer
13 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
13 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
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
22 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
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 ...
0
votes
1answer
10 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
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
1answer
13 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
0answers
19 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
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
25 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
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 ...
0
votes
2answers
35 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
0answers
14 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 ...
1
vote
0answers
32 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
46 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
17 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):
...
0
votes
0answers
26 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
32 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 ...
1
vote
1answer
36 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 --> ...
0
votes
0answers
20 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
19 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
11 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.
...
0
votes
1answer
18 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
0answers
17 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 ...
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 ...
-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
votes
1answer
16 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 ...
0
votes
1answer
27 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
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', ...
1
vote
1answer
19 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):
...
1
vote
0answers
23 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
0answers
24 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
17 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
3answers
45 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
13 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 ...
0
votes
1answer
31 views
Django building the login interface
I'm new to Django and needed some help regarding the login forms. Here's what I've done.
My templates has index.html
<form class="form-signin" action="/login" method="post">
{% csrf_token ...


