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
0answers
2 views
Django Unit testing, unknown column error
I'm a Django beginner and am getting acquainted to using it, and I'm also a big believer in unit testing.
Given a sample database table contracts with the fields
parent_id int
contract_num varchar
...
0
votes
2answers
9 views
Django forms custom validation on two fields one or the other
I'm struggling with the following and need some guidance, below you will see my form.py. I have two fields called group and single. I need to apply the following rules/validation to them...
A user ...
0
votes
0answers
5 views
gevent-socketio nginx uwsgi not working together on development server
I am running a django project that uses gevent-socketio.
For some reason on my development server, all my websockets requests are returning a 101 pending message at which socketio will start cycling ...
0
votes
0answers
10 views
Django South migration history causing an integrity error
My south migration history table is causing integrity errors every time I try to run a new migration. Here is the error:
django.db.utils.IntegrityError: duplicate key value violates unique ...
0
votes
1answer
8 views
django admin jQueryUI dialog
Well, I have a django admin site project and I want to add a simple dialog on one of my change_form template.
I add the following code:
Open button that will open the dialog:
<button ...
1
vote
1answer
8 views
Django-File Handling
I am building an application that allows users to upload images, I am using django-storage with S3 boto to store the images in S3. I am very new to Django and all therefore I have a few questions.
...
0
votes
1answer
16 views
Django 1.5: How to make in django-registration email a unique field?
I use Django 1.5 + django-registration 0.9...
How to make email field unique in model User?
from registration.forms import RegistrationFormUniqueEmail
url(r'^accounts/register/$', ...
0
votes
1answer
16 views
Django - Filter URL in texts
I would like to know if someone here could help me out finding a way to "filter" URLs inside block of texts, comments for example. I wish to be able to "Block" the submitting of such comments on my ...
0
votes
1answer
18 views
validate display none in django
template is
<button type="submit" id="add" class="button_style" onclick="addreporter();" value="Add New Authorised Reporter">Add New Authorised Reporter</button>
<div ...
1
vote
1answer
18 views
Multiple Django projects inadvertently receiving each other's celery tasks
I have five different Django projects all running on one box with one installation of RabbitMQ. I use celery for various tasks. Each project appears to be receiving tasks meant for other projects.
...
1
vote
0answers
29 views
DatabaseError: no such table
Going insane here.
So here it goes, the traceback:
Traceback (most recent call last):
File ...
0
votes
1answer
32 views
Django/Python control: “if form.is_valid ():” is equal to false if the form has an input type “button”
I don't understand why if I have in my html page in a form: <input type="submit" class="btn btn-small btn-primary" id="execute" value="Esegui">`
then the form is valid otherwise if I put a
...
0
votes
0answers
23 views
Subclassing LoginForm
I am trying to subclass the loginform to add an extra field per login but cannot get it to display. I am using mezzanine for the project.
Here is what I have for my forms.py:
from ...
0
votes
1answer
23 views
How customize delete confirmation message
Javascript:
function rowdelete(id){
if (confirm("Are you sure want to delete the Follower?")) {
var form = "<form name="+id+" method='post' action='.'>{% csrf_token %}\n\
...
0
votes
2answers
23 views
error while linking mysql and django
i am using aptana for creating a website using django. I have installed mysql but not able to link the database when i run this command *Python2.7 manage.py runserver* i get a message that Python2.7 ...
0
votes
1answer
25 views
logging standard python exceptions with django
In one of my views, I handle a general python exception. This exception does not crash the site, or result in a 500.
I would like to log this exception with django so that I can inspect it. What is ...
0
votes
1answer
20 views
Can't make nestednamespaces what are the best practices for django urls
I can't create nested namespaces like they are presented in https://docs.djangoproject.com/en/1.4/topics/http/urls/ every time I go more than 1 level I lose all the other namespaces has anyone been ...
0
votes
1answer
21 views
How do I publish a django web app to Google App Engine from Visual Studio 2012
I am trying to set up a django application in Visual Studio 2012 that will publish to Google App Engine. I have a simple hello World Application set up in Visual Studio using pytools that I can run ...
0
votes
0answers
10 views
View pictures from the template via models.FilePathField
I'm not sure this is the correct method to use, so I'm open to suggestions.
Practically I want to display the image retrieving the path where they are saved from the database.
In a class in models.py ...
0
votes
2answers
40 views
Django: What is the most efficient method to query and aggregate based on date + foreign key
i have a model with some fields, such as that:
class Foo(models.Model):
date = models.DateTimeField()
related = models.ForeignKey(Related)
...
i want to create a report which takes a start ...
0
votes
1answer
14 views
django blog zinnia - NoReverseMatch at /blog/
My current project uses django blog zinnia and when I open /blog it gives the following error:
Reverse for 'zinnia_entry_add' with arguments '()' and keyword arguments '{}' not found.
I tried ...
0
votes
1answer
30 views
Calling default add/delete method of Django admin from template
I need to add a functionality where any one can add a new image in my image application.
So i have given a Add Image application link in templates. This link should by default call Add method of ...
0
votes
1answer
17 views
Django message template tag checking
I want to check whether the message tag are INFO ?
How to check that in the template file?
I tried this but it didn't work:
{% if messages %}
<ul>
{% for message in ...
0
votes
0answers
23 views
How to create model in django from legacy database in which I have access to few scemas?
We have command to create tables from legacy database.
python manage.py inspectdb > models.py
I have access to very few scemas in database. I want to create models for the tables which I have ...
0
votes
0answers
24 views
How to monkey patch south handled models from plugin?
I'm making a django site with plugins. Each plugin is a simple django app depending on a main one (or even other plugins).
While dependency between applications/plugins are clear to me, it should be ...
0
votes
2answers
31 views
Custom Django workflow
I'm a newbie in Django and have written the login/registration procedures.
Currently, on clicking the submit button to login, I'm navigated to a page www.example.com/login. Similarly, when I try to ...
1
vote
0answers
23 views
list_filter triggering a FieldError
One of my queries suddenly started to fail after I made some changes to the AdminModel.
After searching a bit, I found that adding a list_filter to my admin_model is creating the FieldError, which ...
0
votes
1answer
16 views
django and celery beat scheduler no database entries
my problem is that the beat scheduler doesn't store entries in the table 'tasks' and 'workers'. i use django and celery. in my database (MySQL) i have added a periodic tast "Estimate Region" with ...
0
votes
0answers
32 views
Disadvantages of creating a Django based trading front-end? [closed]
After struggling with MQL4/MetaTrader for some time, I'm thinking of creating my own FX "trading platform" in python.
Since I work with very basic indicators (Moving Average, MACD etc.), I could use
...
0
votes
1answer
24 views
Overriding max_value in django form
I use a ModelForm and I want to set a max_value for an IntegerField without losing the other attributes which where created from the model (verbose_name, etc.).
This is my ModelForm:
class ...
0
votes
0answers
8 views
Google Play Check Billing
I was asked by management about google apps billing. Currently we created android games using Unity3d and django backend to store and calculate some data. They communicate using REST, WWW class, and ...
0
votes
0answers
13 views
Pillow on Heroku doesn't work
I'm developing an application with Django1.4.3 and Pillow2.0.0.
I have a form to upload image file.
After resizing and cropping posted image file,
I want to save the image file, but error occur.
In ...
0
votes
1answer
34 views
How to add pagination to django.contrib.comments?
I am using Django's Comments Framework in my project to handle comments of a movie :
My my_comments_app/models.py looks like this :
from django.db import models
from django.contrib.comments.models ...
-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
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
19 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
28 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
19 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
49 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
11 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 = ...

