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
2answers
25 views

Django refuses to save the date shown on form

I have a form which allows users to edit their profiles. One of the fields is 'date of birth'. While editing, the form picks up the date coming from database (mySQL) and shows it in the format 'June ...
1
vote
1answer
27 views

Django Model Optimization

Class Model(models.Model): ....... ....... ....... ....... first_name = models.CHarField(max_length = 50) last_name = models.CharField(ma_lenghth = 50) def full_name(): ...
0
votes
2answers
30 views

How to modify a model after bulk update in django?

I try some code like this: mymodels = MyModel.objects.filter(status=1) mymodels.update(status=4) print(mymodels) And the result is an empty list I know that I can use a for loop to replace the ...
0
votes
2answers
30 views

Django passing object ID in hiddeninput by populating

I have an form which allows a user to edit an object description. How can I populate an object ID in a form's hidden input value. What I done so far is I added an field called hidden_field in ...
0
votes
1answer
42 views

Django GET and POST handling methods

I want a way to automatically route GET and POST requests to subsequent methods in a centralized way. I want to create my handler in the following way. class MyHandler(BaseHandler): def ...
0
votes
0answers
12 views

“HTTP Error 500.52 - URL Rewrite Module Error.” django

I want to use django under iis7+windows2008. but now there are some troubles... I create a website , and a django virtual directory named mysite. e:\www\website and I can look the right page of ...
0
votes
1answer
21 views

TemplateDoesNotExist at /website/, extended template

Sorry if my question is not well written or anything, this is my first time posting here. So, I'm trying Django and tries to use the generic templates of Django. I create a parent template named ...
0
votes
1answer
15 views

Django Querying By a Set Relationship (Reverse)

I have class called Toy, in which toys are either Animals or Fruits. Some example from my database, |name|type|pk| |Jerry|Cat|33| |Scoobie|Dog|52| |Leslie|Dog|73| |Helen|Strawbery|86| ...
0
votes
0answers
24 views

Django staticfiles and STATIC_URL

I have a small project, I use relative paths everywhere. For curiosity, in a different directory I started a new project (with the same project name), then I copied over all the core code (Python ...
-1
votes
2answers
41 views

How to save current login user? user_id may not be NULL

I have this error: appname_mymodel.user_id may not be NULL def form_view(request): user = request.user f_form = FForm(request.POST or None, request.FILES or None) if request.method ...
0
votes
0answers
9 views

Django-CMS multi-regional and multilingual subsite

We have to create multi-regional and multilingual web site. For example: http://mysite.com/jp/us/ For Japan in English http://mysite.com/jp/jp/ For Japan in Japanese http://mysite.com/au/us/ ...
0
votes
0answers
14 views

Zinnia Blog doesn't use custom auth user model

I am using Zinnia Blog module with my Django app. I have a Django app and have a custom User model. I have added the following setting: AUTH_USER_MODEL = 'account.Member' However, when I try to ...
2
votes
2answers
28 views

How is `exact` lookup different from `equal` lookup in Django

How is exact lookup diffferent from equal lookup in Django I have two queries Blog.objects.get(title=title) Blog.objects.get(title__exact=title) What is the difference between these two?
2
votes
3answers
36 views

How to apply a decorator to all views (of a module) in django

It happens a lot, when all the views in a specific module are supposed to be available only when the user is authorized, or they should all do the same checks. How could I avoid repeating the ...
0
votes
1answer
30 views

password field data gets clear after submitting

I am uisng Django's auth_user table for username and password.To change the password field i did the below in forms.py class UserRegisterForm(forms.ModelForm): password = ...
0
votes
0answers
16 views

Permission problems with python_egg_cache

I'm using Django and I'd like to execute a management command (let's call it C1) with the 'www-data' user, since that script writes on the same logs used by the web application, and executing it as ...
1
vote
1answer
18 views

Django raw Query aggreation function

I need to write django raw query function to get the sum value and then write to the csn file. I write my query for time in Tracking_details.objects.raw('SELECT *,sum=SUM(work_time) FROM ...
1
vote
0answers
32 views

django website: As i logged out, but click on the browser backspace arrow, it display the former webpage

The web backend is written in django. As i logged out, but click on the browser backspace arrow, it display the former webpage; code: def safe_exit(request): #print request if 'uname' in ...
0
votes
1answer
34 views

set auto increment initial value for id in django model

i have a model with just one field. name. class City(models.Model): <br> name = models.CharField(max_length=30) Django sets id by itself so I end up with id and a description field in ...
0
votes
1answer
33 views

angular, django and csrf

from http://docs.angularjs.org/api/ng.$http , it says we should set default headers to include the token, so i am following it. my code goes something like this var myapp = angular.module('myapp', ...
0
votes
1answer
13 views

How to use django class based views for sending json consist of different model querysets

I have to implement autocomplete search for my two different models "Destination and Regions", so I should send json response to my template according to query results consist of my two different ...
0
votes
1answer
33 views

How can I model the following scenario using a single primary key instead of a compound primary key?

Suppose I am modelling an athletics event. The primary key would be date, track and race_no. class Event(models.Model): date = models.DateField() race_no = models.IntegerField() ...
0
votes
1answer
27 views

How to get the id (not pk) from mongoengine models?

my models class Result(Document) : id = IntField() turn = IntField() url = StringField() the id is not the primary key. As you know, mongodb will generate a key named '_id'. So I use ...
0
votes
1answer
23 views

Django links on base template

Django 1.5.1 Experience, getting started I'm currently working on my static side of the site. And creating the HTML/CSS/JS stuff. In the base html i have some links. One of them is "about" that ...
2
votes
3answers
45 views

How can I manually modify models retrieved from the database in Django?

I wish to do something such as the following: people = People.objects.filter(date=date) person = people[0] person['salary'] = 45000 The last line results in an error: object does not support item ...
0
votes
1answer
20 views

Django read only/view permission on models + row level permission

I am making a photo sharing application using Django Framework. I am stuck with 2 problems 1) The user who has uploaded photo can only edit that photo. Other users cannot edit that photo. But can ...
0
votes
2answers
33 views

Django forms can't find my template

I'm trying to make use of my first Django form, mostly following this example. Do I need to provide an explicit HTML form myself, or does Django's Form class does this for me? If so, how? Here's my ...
0
votes
1answer
27 views

how I can load a model to multipleChoiceField

please y have been trying to show the table in the form, but I have not been able to do. please clone and create database and run the project on github. is too much code to paste here. github: ...
0
votes
1answer
18 views

Writing to csv file via django is adding the module name in the first cell of the file header

I am currently trying to write to a csv file from Django given a list of headers and various data. The file is being successfully created with one exception, the first cell is always showing the ...
0
votes
1answer
26 views

django admin list_filter does not display (None) for choice field

My model contains a choice field that is nullable: status = models.CharField(max_length=255, choices=STATUS_CHOICES, blank=True, null=True) The filter in my ModelAdmin: list_filter = ['status'] ...
0
votes
1answer
28 views

Apache mod_wsgi 32-bit/64-bit Python compatibility

I use Zend Studio / Zend Server for developing my PHP-based web sites, but now I'm taking a course in Python, and I want to learn Django. I have a Windows 7 AMD-64 machine, and am using 64-bit Python ...
0
votes
2answers
29 views

Django create composite attribute

If I have a Person modle as below: class Person first_name = models.CharField last_name = models.CharField I want to create a composite attribute full name, which would be a combination of ...
0
votes
1answer
24 views

Is there a good shortcut convention for ugettext_noop in python/django?

When doing i18n support for django apps it sometimes comes up to have to use ugettext and ugettext_noop in the same file. It's a common convention to import ugettext as _ which is a nice convention in ...
1
vote
2answers
25 views

Mapping a different field OneToOneField in a ModelForm

I have two django models related with a OneToOneField. I'll show the relevant fields: class User(AbstractBaseUser, PermissionsMixin): email = models.EmailField(unique=True, db_index=True) And ...
0
votes
1answer
18 views

Dynamically setting OR filter values in Django queryset

I know from here that to perform an OR operation on a queryset in Django, I can do something like this: from django.db.models import Q User.objects.filter(Q(income__gte=5000) | Q(income=0)) Now ...
0
votes
1answer
38 views

ViewDoesNotExist django

I've been working my way through the tutorials and thought that I'd understood the MVC framework. I have three models, two of which (Guests, Bookings) are populated. I can call data from Guests no ...
1
vote
1answer
43 views

django queryset to query the latest revision only

If have two django models: one storing pages and an other the corresponding content revisions. Now if I search for a term I only want to consider the latest revision of each page. from django.db ...
0
votes
0answers
15 views

Create Hyperlink to view in another app with djangoRESTframework

If I have two apps, with separate urls.py files, how can I reference the view from on app in another so that I can include references with a HyperLinkedField? Let's define two models in separate apps ...
0
votes
1answer
20 views

Only Allow ForeignKey Selection of User Values

I'm trying to build a form, where a user can select a foreignkey from a drop down menu. However, I can't seem to find a way to limit the foreignkey values to those associated with the logged in user. ...
0
votes
0answers
29 views

Django: get the first object from groups

In Django I`m getting my advertisement objects with the following queryset: ads = ads.objects.filter(id=ad_id) My MySQL ADS table have n ads grouped by an external_id that identifies where it was ...
1
vote
0answers
16 views

How To Back Up Django PostGIS Databases

I have a GeoDjango (Django 1.5) application running with PostGIS 2. Traditionally, when backing up a PostgreSQL database without PostGIS, I would use pg_dump. The PostGIS documentation recommends to ...
1
vote
0answers
31 views

Pass variable to TemplateView [duplicate]

# urls.py: url(r'^search$', TemplateView.as_view(template_name="home/search.html")), How would I pass a variable, such as {'update_time': update_time} to a TemplateView.as_view?
0
votes
1answer
26 views

django 1.5 - How to use variables inside static tag

I'm currently migrating all the static files references in my project to the new {% static %} tag that django 1.5 introduced, but I'm having a problem, in some places I use variables to get the ...
0
votes
1answer
15 views

Django Url Include Same App different Roots

can i include the same app url conf within two different root? I mean, i have this (r'^event/', include('quip.apps.event.urls')), but i would like to have that (r'^event/', ...
0
votes
1answer
20 views

Image not uploaded - Django Server

I'm trying to send an image android(client) to django(server) by converting it into base64 string. I've received the string @ the server side, decoded and renamed it.However, when I try to save the ...
0
votes
2answers
33 views

django abstract models versus regular inheritance

Besides the syntax, what's the difference between using a django abstract model and using plain Python inheritance with django models? Pros and cons? UPDATE: I think my question was misunderstood ...
1
vote
2answers
41 views

KeyError at /login/

I'm having difficulty fixing my login form . The issue i'm facing is whenever a user submit the form without entering an email or login , I get this error . How can I resolve this issue? KeyError at ...
1
vote
0answers
26 views

pip installation issue getpip file

I am trying to install pip folowing this tut: http://dubroy.com/blog/so-you-want-to-install-a-python-package/#installing i copy the code from getpip.py, save it and run it with python, but the ...
0
votes
1answer
12 views

Unique field in Django Model for each foreign key

I am defining a set of models, which have references to each other. They are a model for a documentation app, which is as follows class Document(models.Model): text = models.TextField() class ...
2
votes
1answer
27 views

Passing csrf token to Stripe

I am using stripe.js for stripe payments. I need to setup a callback wenhook to receive the request from stripe. Since the webhook is posted to by stripe - I have marked it as csrf_excempt. Is ...

1 2 3 4 5 1040