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
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
46 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
33 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
28 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
35 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
43 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
38 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
26 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
64 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
28 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
37 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
25 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
35 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
15 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
47 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
24 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
22 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
17 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
27 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
29 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
35 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
46 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
23 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
22 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
22 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 = ( ...
0
votes
1answer
43 views

How to add data in a many-to-many relation in Django?

I am struggling with the many-to-many relationships. My models are : class Cars(models.Model): carmodel = models.CharField(max_length=50) modelno = models.CharField(max_length=20) class ...
-2
votes
0answers
38 views

Testing services in Django

I want to ask on how to do unit testing on services in Django, as far as i found there's only testing on the application not on the services. Does it possible for us to do testing on the service as it ...
0
votes
1answer
32 views

Django run models.py from command line

I was wondering how one can exercise the models outside the Django manage.py control. i.e. given the following combination of the tutorial parts how would I be able to just python models.py. # ...
0
votes
0answers
17 views

Django app not uploading all files to S3 - Boto

I'm using Amazon S3 to serve my static files from my Django app on Heroku. The compressed js/css are uploading to S3 fine, but I've added a folder of images to static/img/webicons to my project and ...
0
votes
0answers
23 views

django ajax query returning error 10053 - An established connection was aborted by the software in your host machine

I am running a local django server and doing a simple ajax post request but I keep on getting this error. I have seen the related questions on this on SO which point to APPEND_SLASH but that isn't my ...
0
votes
2answers
29 views

How to debug Django commands in PyCharm

I know how to run commands with PyCharm (Tools -> Run manage.py Task), but I would like to debug them also, including my commands and third party app's commands.
0
votes
2answers
15 views

django.template.loaders.app_directories.Loader fails to find the template file

The template file is saved under the app directory, but it raises TemplateDoesNotExist exception while rendering: Template-loader postmortem as following: Django tried loading these templates, in ...
0
votes
0answers
44 views

Cannot assign “(<Blog: title1>, False)”: “Post.blog” must be a “Blog” instance [duplicate]

I have trouble writing a blog application in Django. First, my models.py: class Blog(models.Model): user = models.ForeignKey(User) blog_title = models.TextField() def __unicode__(self): ...
0
votes
1answer
27 views

Python KeyError only with Apache2 server (not with Django server)

When I tested my Django application with 'manage.py runserver' no issue. But, if I deployed same code by using Apache2 mod_wsgi (v3.3), KeyError happened from the below line. I'm using dpkt v1.8 to ...
0
votes
0answers
12 views

Forms between Django Client and Django Piston API

Is there any easy way to process the ModalForm in Django Piston API to a Django Client? , On documentations @validate decorator is mentioning but I couldn't find the way to send forms from API to the ...
0
votes
1answer
42 views

Django login sends empty username

I am using django.contrib.auth.views.login with a form like this at my login template <form method="post" action="/login/" id="loginform">{% csrf_token %} <label ...
0
votes
2answers
24 views

Run Django development server as public website

What are the risks of doing this? I understand the documentation says not to do it, but I have password protected all the pages.
0
votes
2answers
29 views

how to import the custormed settings.py variable in django project?

I use customer settings in my django project as in my manage.py. I write: if __name__ == "__main__": os.environ.setdefault("DJANGO_SETTINGS_MODULE", "setting.windows") ... I want to run my ...
0
votes
1answer
12 views

xlwt cannot format number to date

Why the following code can't format 44000 to a date in excel? It shows up in xls file as the original number no matter what I try. Things I have tried: Different format string, none works. I copy ...

1 2 3 4 5 1070