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

Migration: Creating UserProfile in Django/MySQL

I have created a UserProfile field in order to add a favorites functionality to my site. Using Django's recommendation, I created a UserProfile model as follows at the bottom Unfortunately, I already ...
0
votes
1answer
12 views

Django, how to display comments and replies made on that comment in template

I have a comment table which is having a foreign key to Blog table. This table is used to make comments to blog and replies can be made to a comment. For this purpose i have used column parent which ...
0
votes
0answers
18 views

Django Facebook + Userena

I am trying to integrate Django-Facebook with an app already using Django-Userena for user accounts. When I try to visit "/accounts/edit" when logged in through Facebook, however, I am not able to ...
1
vote
1answer
16 views

Is it possible to configure multiple Apache WSGIAlias'es under same VirtualHost?

I currently have an SSL configuration file in apache to serve my django project. Currently that setup looks something like: <VirtualHost _default_:443> #setup of paths to SSL file, default ...
1
vote
1answer
36 views

Django: edit template inside another template

I am making a CMS using Django, one of the desired features is to give my client ability to edit automatic sent commercial emails by himself (those emails are template files). It's better explained by ...
-3
votes
0answers
14 views

Apache2 webserver using a lot of CPU [closed]

I've been racking my head to figure out why this is. We didn't have the problem before but now we seem to be using a lot of CPU. When I use top I see Tasks: 68 total, 1 running, 67 sleeping, 0 ...
1
vote
1answer
39 views

trailing slash “/” not added to root url

I recently came across a very strange problem I could not resolve. I am running django with mod_wsgi and apache, and the problem is that www.example.com/subdir is not being directed to ...
0
votes
1answer
22 views

How to execute code in Django if an error occurs?

One of the views that I call works with two database tables. It attempts to find an object in the first table. If the object isn't found, I get a Server Error (500). I'm not sure what the code would ...
0
votes
0answers
22 views

Bootstrap select - Multi select is not showing the last item entered

I'm using Bootstrap Select. I'm trying to add a new value using this function. Function dismissAddAnotherPopup(win, newId, newRepr) { // newId and newRepr are expected to have previously been ...
1
vote
1answer
24 views

How do i fix user sign-in failure in Django?

I am experiencing an awkward moment with my Django application. I deployed my django app with heroku about a month ago, it worked fine until today, users cannot access their accounts. I specify the ...
0
votes
0answers
18 views

How to install Django if I have my own VPS server with Centos and cpanel/WHM?

I have a VPS server with Centos and cpanel/WHM. But I will mount a django app. Do you know a tutorial that can help me? I heard about mounting Django apps with Nginx & Gunicorn run very good. ...
1
vote
3answers
45 views

How can I make a Django update with a conditional case?

I would like to use Django to update a field to a different value depending on its current value, but I haven't figured out how to do it without doing 2 separate update statements. Here's an example ...
1
vote
2answers
30 views

Django: ValueError: Cannot create form field because its related model has not been loaded yet

I'm having some trouble with a Django project I'm working on. I now have two applications, which require a fair bit of overlap. I've really only started the second project (called workflow) and I'm ...
0
votes
1answer
20 views

Model linking to other models based on field values

I'm working on simple ratings and comments apps to add to my project and am looking for advice on creating the models. Normally, I'd create these database schemas like this: comment_ id - ...
0
votes
0answers
29 views

Difficulty Editing Django Admin javascript Files

I have a Django app with a functioning db and admin page. I am being asked to make some minor changes to the appearance/functionality of the admin page, but I know virtually nothing about javascript, ...
1
vote
2answers
50 views

Django Form Submission Error

I have this recurring problem with form submission in Django, and the frustrating part is that I'm not sure how to interpret what's happening. Essentially I have different pages with form submissions ...
0
votes
0answers
37 views

Django admin issues with empty translated values and unique=True

I'm trying to use django-modeltranslation but I can't get it working well. I'm suffering because Django admin crashes with empty translated values and unique=True. This appears as a closed issue, but ...
2
votes
1answer
31 views

Unit testing an AsyncResult in celery

I am trying to test some celery functionality in Django's unit testing framework, but whenever I try to check an AsyncResult the tests act like it was never started. I know this code works in a real ...
0
votes
2answers
19 views

Django home page URL being rendered as a different URL

So, I have a simple home page for a django project I am working on. In the upper left hand corner is the logo for the site. In my template, I have this code: <a href="{% url "home" %}">Company ...
0
votes
1answer
39 views

Django Admin custom list_display name and ordering

I have the following AdminModel: class ActionAdmin(admin.ModelAdmin): list_display = ( 'action_icon', 'name_', 'level', 'class_', 'category', ) ...
2
votes
3answers
44 views

Django optimize for loop in method

I wrote the method to check one attribute and return False if there is an artist with selling=False, and True otherwise. def check_selling(track, excludes): """ Returns True if all track's ...
0
votes
0answers
34 views

Django demo won't run at all

I'm a beginner with Django. I use it under Kubuntu 12.04LTS with Python 2.7(.3?). I do: $ django-admin.py startproject mysite Everything seems correct. Then I go to folder 'mysite' and I do: $ ...
1
vote
3answers
41 views

How to take a dictionary and send a JSON Response

I have the following function, def facebooktest(request): fb_value = ast.literal_eval(request.body) fb_foodies = Foodie.objects.filter(facebook_id__in = fb_value.values()) for fb_foodie ...
0
votes
1answer
41 views

Django templates - can `block.super` mean something without `extends`?

I saw a template using {{ block.super }} (inside block tags), without any extends tag anywhere in the file. Here it is: ...
0
votes
1answer
57 views

Recommended way of talking to a Django application URL, from within a view of the same application?

I have a Django application, and need to deal with the following: One of my views, needs to make a POST request to another URL endpoint of the same application. In order to do so, I use the requests ...
1
vote
1answer
28 views

Django REST Framework - 405 METHOD NOT ALLOWED using SimpleRouter

I'm using the SimpleRouter tuorial within the docs. Just to test I've created a temporary Authentication class: class BackboneBasicAuthentication(authentication.BaseAuthentication): def ...
1
vote
3answers
75 views

Parse JSON with colon in key

I am trying to parse the following JSON using Python / Django: [ { "street": "KEELER", ":id": 1421 } ] Within my Django templates, I can successfully access the street key like: {{ ...
0
votes
2answers
29 views

Syntax error at “def” in Django views using sessions

This is in an app in a Django project, in the views file for that app. The app is installed in settings.py, but it throws the error before it should be calling the view up. I am getting an error at ...
-1
votes
0answers
20 views

How to install a database server for Django? [closed]

I am really desperate to get started coding with Django and have some great ideas for some potential web apps. I have some basic experience with HTML and CSS but have no knowledge of how to set up ...
0
votes
1answer
38 views

django + uwsgi + ngnix + debug off = Server Error (500)

I'm trying to set up a production server which consist of django + uwsgi + ngnix . The tutorial i'm following is located here ...
0
votes
1answer
34 views

how to use delete() for a model in django

I'm trying to delete a Job object from my database and I keep getting the error: TypeError at /minion/deleteJob/ deleteJob() takes exactly 2 arguments (1 given) Request Method: GET Request URL: ...
0
votes
2answers
26 views

How to count how many is dislike and how many is like?

class ObjectRate(models.Model): user = models.ForeignKey(User) my_object = models.ForeignKey(Design) rate = models.DecimalField(max_digits=2,decimal_places=1) rate can be set to ...
0
votes
0answers
25 views

django admin and inlines

I am having a weird behaviour when I add a booleanfield to a through memebership which is included as an inline into the main model. Once saved, it randomly shows the field as True/False. No matter ...
0
votes
0answers
36 views

[SOLVED]Why does $.getJSON in $(document).ready not always execute [closed]

You see, in django you can give a 'base.html' which is extended by every other pages. Now I have a navigation bar in the 'base.html', everytime the page is loaded/reloaded, I should set the avatar in ...
0
votes
1answer
17 views

select_for_update in development Django

The Django documentation states that: If you were relying on “automatic transactions” to provide locking between select_for_update() and a subsequent write operation — an extremely fragile ...
1
vote
1answer
49 views

Avoiding Django's 500 error for not allowed host with Nginx

I'm using Django 1.5.1 in a production website but I'm having a huge number of 500's reports because of not allowed hosts requests. My website's Nginx vhost is configured as follows: server { ...
0
votes
1answer
31 views

post_save signal and relations

I am applying the post_save signal to apply user rights per object, and then filter the queryset accordingly. My model is like this: class Project(models.Model): # Relations with other entities. ...
0
votes
1answer
20 views

How can I add access to use here -1 (instead 0)? Vote negative

url(r'^rate/(?P<id_obj>\d+)/(?P<rate>\d{-1,1})/', 'app.views.add_rate'), How can I add access to use here -1: (?P<rate>\d{-1,1}) This is negative Vote(-1) or positive (1)
0
votes
1answer
24 views

add firstname lastname to pinax account

How do I change the Pinax account app to get information like First name, Last Name? Since I cant find any particular solution is better to use django- registration. I am a newbie to django Pinax ...
0
votes
1answer
22 views

Django CMS pages throwing 404 for users who are not logged in to the admin

All the pages throw a 404 error on a site for users who are not logged in. But if I log in to the admin and go back to view the site, all the pages are fine and viewable. I've been using Django CMS ...
0
votes
1answer
28 views

executing django query in same statement

This might be a silly question. Is there a way to execute multiple queries in one execute statement? cursor = conn.cursor() cursor.execute("Select * from my_tables; show tables;") result = ...
0
votes
2answers
32 views

Django template - dynamic variable name

Good Afternoon, How can I use a variable variable name in Django templates? I have a custom auth system using context, has_perm checks to see if the user has access to the specified section. ...
0
votes
2answers
33 views

Template Django application extending template django project

I am quite a beginner in django and I need some advices. I am trying as much as possible to create reusable django applications that will be used in several different projects. But I don't know how ...
0
votes
1answer
36 views

Django CMS - check if placeholder is empty

I use: DjangoCMS 2.4 Django 1.5.1 Python 2.7.3 I would like to check if my placeholder is empty. <div> {% placeholder "my_placeholder" or %} {% endplaceholder %} </div> I ...
1
vote
0answers
48 views

django rest nested relation in post/put

I am new in django rest api developement. I have two models one is category and another is subcategories. Here is my models class Category(models.Model): title = models.Charfield() ...
0
votes
1answer
21 views

Views with form depending of payment method

I have 2 types of payment and 3 types of products. I have one form with selecting product and selecting pay method: <form action="/order-form/{{product.id}}" method="get"> <select ...
1
vote
1answer
25 views

Import CSV Utf-8

I'm using this python script for import all the data to my application form a CSV file. # -*- encoding: utf-8 -*- #CSV ubication csv_filename="route" #django ruta_django="route" ruta_project = ...
0
votes
1answer
32 views

How to use following python dictionary in template using javascript?

I have a Python dictionary like this: {'test_data': ['reads_1.fq', 'reads_2.fq'], 'test_data/new_directory': ['ok.txt'], 'hello': ['ok.txt'], 'hello/hi/hey': ['b.txt']} I want to use this in the ...
0
votes
2answers
23 views

Behavior of querysets with foreign keys in Django

When a model object is an aggregate of many other objects, whether via Foreign Key or Many To Many, does iterating over the queryset of that object result in individual queries to the related objects? ...
0
votes
1answer
23 views

can't save model instance in pipeline method of django-social-auth

Today I discovered something weird, and I need an explanation please. This is my current pipeline of django-social-auth SOCIAL_AUTH_PIPELINE = ( ...

1 3 4 5 6 7 1073