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

1
vote
1answer
28 views

Representing ManyToMany relation in Django as two multichoices

I have some many2many fields with a lot of options to choose from and I'd like to have two multichoices for each one, on the left the available options and on the right side the chosen ones. Here is ...
0
votes
0answers
9 views

Django slug field in Arabic and other foreign languages

am trying to build an app with a model which contains a unique of the title, some users will write the title in Arabic and other languages and when on save, I try to slugify the field. It would return ...
0
votes
0answers
20 views

Server side only multiplayer turn based game engine [closed]

I'm developing a turn-based game for 2-4 players with very small amount of needed client and server side requests/respones. Basic requests for clients would be: a) ...
1
vote
0answers
15 views

Django tracking tags in different languages

I've built a small app into my project which is intended to go through given text and extract words with # tag before it. When text is received in English it works perfectly but when using Arabic or ...
0
votes
1answer
39 views

writing urlpattern in django for rendering an image

in my django app,I have an index page which lists some summary info which is dynamic(based on some user input data in db) . I have coded it as below views.py def ...
1
vote
2answers
52 views

Is there a way to access the context from everywhere in Django?

I'm looking for a way to have a global variable that is accessible by any module within my django request without having to pass it around as parameter. Traditionally in other MVCs, I would store it ...
0
votes
1answer
23 views

Raise field error in models clean method

How to raise a ValidationException in the models clean method? def clean(self): from django.core.exceptions import ValidationError raise ValidationError({'title': 'not ok'}) The above does ...
-3
votes
1answer
31 views

Django-Ecommerce 2013 [closed]

I am a django newbie.I am looking for a framework to develop a simple e-commerce site. I have reviewed other posts but all of the questions and answers looks a bit old.Please suggest a good framework ...
1
vote
1answer
30 views

celery + django - how to write task state to database

I'm running Celery with Django and RabbitMQ and want to see the task states in the database table. Unfortunately no entries are written into the table djcelery_taskstate and I can't figure out why. ...
0
votes
2answers
21 views

Running Gunicorn behind chrooted nginx inside virtualenv

I can this setup to work if I start gunicorn manually or if I add gunicorn to my django installed apps. But when I try to start gunicorn with systemd the gunicorn socket and service start fine but ...
0
votes
1answer
38 views

Django served bootstrap.js file not working in mobile

Edit: So I've narrowed the problem down - it works when I link to an externally hosted bootstrap.min.js file, and doesn't work when I use the local file (django's dev static folder setup) This has me ...
1
vote
2answers
46 views

How can I select multiple columns from a Django model?

At the moment I have a query that selects distinct values from a model: Meeting.objects.values('club').distinct() In addition to the 'club' field, I also wish to select a 'time' field. In other ...
0
votes
1answer
24 views

TimeField format in Django

I am trying to use a TimeField model which only consists of MM:SS.xx (ie 43:31.75) format. Is it possible to format a regular Python time object like this? Thanks.
0
votes
1answer
33 views

I how can I return objects in Django?

The following Model.objects.all()[:10] Will return 10 records ordered by primary key. I'm trying to get the objects in reverse order. In other words if my highest primary key was 5000, I'm ...
0
votes
1answer
21 views

Django how i can get User.username and Group.name

I need to get the username and the name of group for all user. The model that i use are User(default) and Group(default) index.html: {% for dato in usuarios %} {{dato.first_name|title}} {% ...
0
votes
2answers
23 views

How can I feed a server side Django string array into a client side JavaScript array?

On my server the array appears as follows: data = [u'Data1', u'Data2', u'Data3'] In Django, I send the data through to the client using: render(..., {'data': data}) On the client side I try to ...
0
votes
0answers
25 views

ImproperlyConfigured: Error loading MySQLdb module pycharm

I'm getting this error when trying to launch my project, I think there is a mismatch in the architecture of the mysql with the python version? However I can't point out what exactly is wrong, and how ...
0
votes
1answer
31 views

URL reversing not working in django when using arguments

I'm really stuck with this one. I have the following in my urlpatterns: url(r'^user/$', UserView.as_view(), name='farmauth-user'), url(r'^user/(?P<id>\d+)/confirm/(?P<token>\w+)/$', ...
0
votes
2answers
16 views

Setting the authenticated user on a Django model

I have a number of models that need to refer back to the user that created/updated them. Generally this just involves passing request.user to the relevant attribute, however I'd like to make this ...
0
votes
0answers
31 views

weird django error: cannot import name get_path_info

I suddenly started getting this error when I try to start the django development server, and I cannot figure out where it is coming from. I have tried updating django. File ...
0
votes
0answers
27 views

Atomic conditional-update in Django

So I have two Models: class Unit(models.Model): name = models.CharField() class Session(models.Model): unit = models.ForeignKey(Unit) startDateTime = models.DateTimeField() endDateTime = ...
0
votes
1answer
38 views

Python 2 and 3 metaclass compatibility when kwargs are used

I am making a metaclass where I customize the __new__ method to customize how the new class will be created according to the provided values in kwargs. This probably makes more sense in an example: ...
1
vote
1answer
26 views

Edit a Key/Value Parameters list Formset

I'm looking for a convenient solution to create an 'edit settings' key/values page. Parameters model : class Parameter(models.Model): key = models.CharField(max_length=50) value = ...
1
vote
0answers
31 views

Generating a single queryset with filtered summary data across a foreign key?

I have a small Django project to learn with (it's a web UI for the RANCID backup software) and I've run into a problem. The model for the app defines Devices, and DeviceGroups. Each Device is a ...
1
vote
1answer
37 views

Django caching - Pickle is slow

Working on optimization of one web-site, I found, that finally pickling of QuerySets becomes bottleneck in caching, and no matter how clever your code could be, unpickling of relatively large QS in ...
1
vote
1answer
28 views

Staying in the same Shell session with Python

I am building a Python script that will automatically create and arrange my new Django projects. What I'm doing is; create a virtualenv activate the virtualenv with source my_app/bin/activate pip ...
0
votes
2answers
49 views

Django 1.5 url redirect with regex?

I'm trying to do something like this: (r'^$', RedirectView.as_view(url='^(?P<username>\w+)/$')), but it doesn't seem to parse the regex part to the actual username... I've done research but ...
0
votes
2answers
28 views

File Upload PHP To DJango [closed]

Can you help with the following example. How is it realized in python ? <?php function bytesToSize1024($bytes, $precision = 2) { $unit = array('B','KB','MB'); return @round($bytes / ...
0
votes
1answer
31 views

Can I use an identity hasher for testing?

I have some tests for which I need to create fully-functional test users. I do this by subclassing TestCase in my tests, and initializing my test database in the setUp method. However, in order to ...
1
vote
3answers
57 views

Authenticate user using email and password

I have a form that only allow users to login via username . I decided to only allow user to login via email instead of username. First, this is not a duplication of any question relating to logging ...
1
vote
1answer
32 views

Django: get subset of a model with at least one related model

class Category(models.Model): # fields class Product(models.Model): category = models.ForeignKey(Category) # fields Assuming that not all the categories have at least a product, how ...
0
votes
2answers
35 views

'NoneType' object has no attribute 'user'

models.py class Report(models.Model): user = models.ForeignKey(User, null=False) photo_files_attached = models.BooleanField('Photos', default=False) views.py def media(request): user = ...
0
votes
2answers
27 views

Filtering objects less than 30 days and excluding object's user for a particular object

I have 2 models called Car and Review . A user can write many reviews for a car. I am able to filter all the reviews for a certain car . The issue i'm facing is , I only want to filter all the ...
0
votes
1answer
27 views

Django image file not getting uploaded

models.py class Report(models.Model): user = models.ForeignKey(User, null=False) photo_files_attached = models.BooleanField('Photos', default=False) forms.py class ...
0
votes
4answers
25 views

Django: Static files missing when rendering template

I am using django 1.3 and trying to deploy a django project (client sent) on my dev machine (ubuntu 12.04). The problem is regarding the static files. My directory structure is as follows: ...
0
votes
1answer
22 views

Accessing model from FileSystemStorage

I have custom FileSystemStorage. The idea is to pass optional filename parameter. My custome storge code: class SalesMapFileStores(FileSystemStorage): def __init__(self, location=None, ...
1
vote
1answer
21 views

django alternative EMAIL_HOST settings

I want to implement django managment command which send emails by smtp with not default settings from settings.py file such as: EMAIL_HOST EMAIL_HOST_USER EMAIL_HOST_PASSWORD FROM_MAIL ...
0
votes
1answer
22 views

OneToOneField QuerySet returning empty dict

I have 2 models called Manufacturer and Car . The Car model has a foreignKey to Manufacturer which mean a many cars can belong to a single Manufacturer. In the model manfacturer , their is an ...
0
votes
1answer
23 views

django settings error (DB Engine) when I moved all of my apps to “apps” directory (SOLVED)

I changed the traditional django layout, and decided to put all of my apps to apps directory. the initial layout is something like this : Project/ apps/ myapp/ __init__.py ...
0
votes
1answer
16 views

Error when trying to compress static files when using django-storages and django-compressor together

I have setup an AWS S3 bucket in order to transfer my static files in a remote CDN using the application django-storages, everything worked fine until I tried to compress my static files before ...
0
votes
1answer
60 views

How can I get the name of app inside a model?

I'm trying to write model mixin, that will give me direct link to admin edite form: class EditLinkMixin(models.Model): def get_admin_link(self): return '/admin/%s/%s/%d/' % (app_name, ...
0
votes
1answer
23 views

Smoothly converting a static website to Django

I currently have a simple apache /var/www setup. I have a bunch of static HTML files in a directory (let's call it /var/www/mydir), which show up on http://mysite.com/mydir/filename.htm. Now, I want ...
0
votes
1answer
23 views

Django fiter query from relational table

I'm creating blog, articles are posted only by login.So am having four table such as, User, JSdetails, Blog, comments. This four table are interrelated with each other. Here I want to display profile ...
0
votes
3answers
44 views

How can I show only last entry in django?

I'm using Django 1.5.1. I have a ImageModel for top of my first page. How can I show only last entry of this model? #model.py class Vitrin(models.Model): title = ...
0
votes
2answers
29 views

Rendering only HTML from view?

Currently render_to_response returns a HttpResponse objects that holds the html, but is there a way to to just render only the HTML from a template, a dictionary, and a request from a view? Note: the ...
0
votes
2answers
27 views

Multiple Django apps under same domain

I'm trying to set up two Django applications locally at subdirectories under the same domain, e.g.: http://127.0.0.1/en/ http://127.0.0.1/jp/ Here is a snippet of /etc/apache2/apache2.conf ...
0
votes
1answer
33 views

how to provide inital data to django models?

how to provide inital data to django models that include foreignkeys and datetimefield. for example:: quorum/models.py class Question(models.Model): user=models.ForeignKey(User) ...
0
votes
1answer
28 views

i need to restart django server to make my app properly work

so i made a python script to grab images from a subreddit (from Imgur and imgur albums). i successfully done that (it returns img urls) and wanted to integrate it into django so i can deploy it online ...
1
vote
2answers
34 views

Django: delete related object via OneToOneField

Is there some clever way how to perform delete in this situation? class Bus(models.Model): wheel = OneToOneField(Wheel) class Bike(models.Model): wheel = OneToOneField(Wheel) ...
0
votes
1answer
37 views

Django and loading jQuery

It is possible to have scripts tags in child pages and to be rendered by Django whey they (child pages are loaded / showed)? I have a mobile web app which has this structure ROOT --PAGE1 (here I'd ...

1 2 3 4 5 1037