Django 1.4 is the newest stable version of Django framework, with improved support for time zones and various other improvements.

learn more… | top users | synonyms

0
votes
0answers
31 views

Django create model object and list without saving it

I have for example something like this: class Order(models.Model): user= models.ForeignKey(User) class OrderLines(models.Model): product = models.ForeignKey(Product) quanity = ...
0
votes
1answer
24 views

Django-dilla “Unknown command: 'dilla'”

I'm unable to make django-dilla work with my django1.4 project. I've installed django-dilla through pip and I can import it properly from shell. >>import dilla >>dilla.__file__ ...
0
votes
0answers
18 views

How can I retrieve and show in template an image saved in media folder uploaded to database by user? Please just steps

I am using django 1.4 python27. I uploaded two or three images by the following way: #settings.py MEDIA_ROOT = 'base/media' MEDIA_URL="/media/" STATICFILES_FINDERS ...
0
votes
0answers
15 views

django haystack not returning results according to expectations

I have configured Django haystack with Elasticsearch Search Engine using QueuedSignalProcessor with redis Queue backend. Everything working except now I have some issue. I have two objects in db whose ...
0
votes
2answers
37 views

Make menu item not clickable in Django CMS

I have a Django application running using Django CMS. I am trying to make one specific submenu not clickable. The menu is like this: item1|item2|item3 sub_item3 sub_item3 ...
-3
votes
1answer
23 views

i want to get a list like ['lcd monitor','keyboard']. i am getting a object like [{'product name':'lcd'}]. please solve this issue [closed]

i am getting all the product names from the product table and putting it in a object.so from that object, i want a list of all the product names. please help me . my code is: material_obj = ...
0
votes
1answer
31 views

Cross-referencing foreign keys in Django 1.4

I have a Django project where I would need two models to have a foreign key to each other. However this is not possible because two Python files would have to import each other which Python doesn't ...
0
votes
1answer
24 views

How don't call clean_<fieldname> method in 'required=False' field?

How don't call clean_ method in 'required=False' field? forms.py from django import forms class userRegistrationForm(forms.Form): username = forms.CharField( max_length=30, ) ...
0
votes
2answers
52 views

Queryset only get one (any) record for each foreign key

Say I have the following models: class Manufacturer(Model): name = models.CharField(max_length=255) origin = models.CharField(max_length=255) class Car(Model): model = ...
2
votes
1answer
89 views

Django 1.4 to Django 1.5 Direct to template extra_context

So Django 1.5 no longer uses the direct_to_template call. I am porting over some urls and I got stopped by this. url(r'^system_settings/$', 'django.views.generic.simple.direct_to_template', ...
0
votes
1answer
28 views

How to use only form validation of ModelForm?

How to use only form validation of ModelForm? Please see my code! models.py from django.db import models class IPAddr(models.Model): ip = models.GenericIPAddressField(unique=True,) class ...
2
votes
0answers
46 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 ...
0
votes
1answer
37 views

How to pass DetailView over the 'slug' in url?

How to pass DetailView over the 'slug' in url? First, let's look at my code. urls.py from django.conf.urls import patterns, include, url urlpatterns = patterns('', ...
0
votes
0answers
51 views

Using the Django assignment_tag built-in tag the right way

I'm working on a project in Django. Earlier today, I discovered the new (Django >= 1.4) assignment_tag. I immediately decided that it was just what I needed EVERYWHERE and threw some logic into one ...
0
votes
0answers
61 views

Django App Always Return 404 When Debug=False

I'm trying to deploy a django app which is basically a readthedocs instance hosted in my server. It is configured with gunicorn + nginx as of the documentation suggest, but I found a little problem: ...
1
vote
1answer
66 views

Django forms.DateInput does not apply the attributes given in attrs field

Placeholder, class not getting set when tried to apply through the django's attrs specifier for forms.DateInput The form is a ModelForm. And according to the docs Takes same arguments as ...
0
votes
0answers
12 views

Is there a way to identify if pre_delete signal was triggered for cascade delete?

I have a scenario in which I want to know if pre_delete signal for a Model BandMembers is called if single object is being deleted or multiple. Consider this simple example: class ...
1
vote
1answer
27 views

Override a block from an include via extend is blank?

So I have a base template, which includes a header: base.html: {% include "header.html" %} header.html: <ul> <li><a>Link</a></li> ...
0
votes
1answer
55 views

Django: Can't find template files. / App works without template files?

Yesterday I tried to edit a template in my django app and noticed that the template-file isn't even used (anymore). Even if I delete it the app will continue to work and changes I make in the file ...
0
votes
1answer
97 views

Static files: No such file or directory error in Django 1.4 [closed]

I created an app locally with the django development server and now want to host it on the web. I uploaded and installed everything on a server with python 2.7, django 1.4.5 and flup. Everything ...
0
votes
1answer
194 views

Django ERROR (EXTERNAL IP): Internal Server Error: /ico/apple-touch-icon-precomposed.png

My django application is currently sending error reports when users try to acces pages of the site that does nor exist, which is how its supposed to be. But when I try to use the django application ...
1
vote
1answer
60 views

Django: How to unlink generic relation?

How to unlink generic relation? I want to just unlink Note and Customer. models.py class Note(models.Model): contents = models.TextField() content_type = models.ForeignKey(ContentType) ...
0
votes
1answer
258 views

Error updating django 1.5 - u "'admin' is not a registered namespace

I am upgrading django from 1.4 to 1.5 in the front and all goes well, but admin side when I try to enter the url I get this particular error, and not how to fix it, any ideas? error: NoReverseMatch ...
0
votes
0answers
36 views

passenger_wsgi.py for Django 1.4 running on Dreamhost with virtualenv

I got a website running in Dreamhost but I haven't been able to run with succesful this website. I already have installed virtualenv, pip, and Python 2.7.3 and I've enabled the passenger on Dreamhost ...
0
votes
1answer
21 views

How can I filter queryset by type of a field

I use mezzanine. It has model: class AssignedKeyword(Orderable): """ A ``Keyword`` assigned to a model instance. """ keyword = models.ForeignKey("Keyword", ...
0
votes
0answers
46 views

How to use filter() in GenericForeignKey

I read class GenericForeignKey. That link have this sentence "Due to the way GenericForeignKey is implemented, you cannot use such fields directly with filters (filter() and exclude(), for example) ...
0
votes
1answer
66 views

Django social auth for facebook giving an error

I am using: django-social-auth v 0.7.19 django 1.4.3 models.py: class UserProfile(models.Model): user = models.ForeignKey(User) username = models.CharField(max_length = 64, blank = True, ...
0
votes
2answers
33 views

If I don't want to call clean_<fieldname>() method, can I do it?

Django: If I don't want to call clean_() method, can I do it? class myForm(forms.Form): userId = forms.CharField(max_length=30, required=False,) email = forms.EmailField(required=False,) ...
0
votes
2answers
71 views

Django1.4: How to use order_by in template?

Django1.4: How to use order_by in template? models.py from django.db import models from django.contrib.auth.models import User from django.contrib.contenttypes.models import ContentType from ...
1
vote
1answer
122 views

django: How to pass variable to class?

urls.py url(r'^customer/(?P<name>[^\s]+)/$', customerDetailView.as_view(), name="customerDetailView"), #pass 'name' variable and views.py class customerDetailView(DetailView): ...
0
votes
1answer
31 views

I don't know when to use class GenericForeignKey in django.contrib.contenttypes module

I don't know when to use class GenericForeignKey in django.contrib.contenttypes module ...
0
votes
2answers
82 views

Django: I want to connect about one-to-many

Django: I want to connect about one-to-many... What should I do? from django.db import models class Note(models.Model) content = models.CharField(max_length=20) class A(models.Model) ...
0
votes
1answer
88 views

Django admin - Email username and password on user creation

I'm using django-1.4.3 and the superuser can create users and assign password to them. Here I'm using django-email-as-username to enable users to login with their email as username. When the superuser ...
0
votes
1answer
26 views

Error when submitting form [duplicate]

Possible Duplicate: Updating an entry on form submit instead of saving new entry I am editing the form and submitting it, but it is not getting updated, instead it is storing in another ...
0
votes
0answers
72 views

Django: How to get yester query set in class-based views?

Django: How to get yester query set in class-based views? http://ccbv.co.uk/projects/Django/1.4/django.views.generic.dates/TodayArchiveView/ I use TodayArchiveView. BTW, if TodayArchiveView get ...
2
votes
1answer
219 views

Django 1.4 - Redirect to Non-HTTP urls

We have a view which redirects to a Non-HTTP url scheme. Its used in an iOS app. But since we have upgraded to Django1.4 we are getting a crash when this redirect code is executed. It crashes with ...
0
votes
1answer
86 views

Django: How to call class-based generic views in views.py?

I want to call class-based generic views in views.py Please see my code... urls.py from django.conf.urls import patterns, include, url from crm.views import * urlpatterns = patterns('', ...
0
votes
2answers
88 views

Creating a ModelForm to update a record in django 1.4

I am trying to create a ModelForm that updates a record in my database, but for some reason it isn't working. It turns out blank. What am I doing wrong here? this is my forms.py: class ...
0
votes
1answer
49 views

How to pass form to Class-based generic views(TodayArchiveView)?

url.py from django.conf.urls import patterns, include, url import os.path from crm.views import * urlpatterns += patterns('', (r'^test/$', tView.as_view()), ) views.py from ...
1
vote
1answer
142 views

Creating Dynamic combobox in multiple front-end Django 1.4 and jQuery?

sorry if you do not understand the translation but I need help with Django 1.4, the fact is that I need an example or a tutorial how to create multiple dynamic backend comboboxes in html form, the ...
0
votes
2answers
55 views

NoReverseMatch Django Postman

Why does this return a NoReverseMatch? From django-postman: url(r'^write/(?:(?P<recipients>[\w.@+-:]+)/)?$', 'write', name='postman_write'), Template: <a href='{% url postman_write ...
0
votes
2answers
109 views

Django AutoSlugField across inherited models

I'm wondering if you can have slugs unique across inherited models? I have three models, one base and two that extend it. The base has a unique AutoSlugField that is generated from the name field. ...
0
votes
2answers
72 views

I don't know when to use reverse() in django.core.urlresolvers module

I finished reading this(https://docs.djangoproject.com/en/1.4/topics/http/urls/#django.core.urlresolvers.reverse). When are reverse() useful? Thank you!
-1
votes
1answer
27 views

I getting a 'Reverse for 'views.mainPage' with arguments '()' and keyword arguments '{}' not found.'

I getting a 'Reverse for 'views.mainPage' with arguments '()' and keyword arguments '{}' not found.' mainPage method in /django_crm/crm/views.py @login_required def mainPage(request): variables ...
1
vote
1answer
61 views

Django1.4 with Celery: A. Sqlite3 database as broker possible? B. Celery versions necessary to install?

I'm running into all sorts of errors when following the official celery guide for django projects. Before going into more detail of the errors I encountered I would like to be clear on the following ...
0
votes
0answers
87 views

Django 1.4: admin not using STATIC_URL

I've upgrade my Django from 1.3 to 1.4, and using django.contrib.staticfiles. I have to change the ADMIN_MEDIA_PREFIX to only use STATIC_URL, wich is defined as STATIC_URL = '/static/' When I open ...
0
votes
0answers
10 views

In Django 1.4.x, is there a way to inject or hook custom validators to a 3rd-party model?

Suppose I'm developing a project and I'm using a model from some 3rd-party application. E.g.: # `foo` is the application; `Bar` is the model from foo.models import Bar and I need to tweak the ...
1
vote
0answers
102 views

Django startproject creates broken projects

After installing Django 1.4.3 using pip on debian 6.0.6 (squeeze) django-admin.py startproject creates broken projects. $ django-admin.py startproject testproject $ cd testproject $ python manage.py ...
0
votes
2answers
150 views

static files not found in django 1.4

While deploying a django app. I am having problem with static files. I am having JS and CSS files in static directory. But browser is not able to find those files. I am having same files and settings ...
1
vote
3answers
509 views

Django 1.4 on GAE: sqlite “ImportError: cannot import name utils”

I'm trying to get sqlite3 support working on Django 1.4 on Google App Engine 1.7.4 on Python 2.7. I fiddled around with the "Google Cloud SQL" database backend, all worked well (syncdb, ...

1 2 3