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

Django - arbitrary text inputs widget

Im looking for way, to implement an input in admin interface which will allow to spawn arbitrary text-fields (or better to say defined not-dynamic set of UI elements), write something there, and then ...
1
vote
0answers
7 views

What is the best practice to keep some tables in one database synchronized in other database?

I have 2 Django applications with two databases. I want to have few models same in both databases. One app will only read those models and it cannot write new items. What is the best way to have fresh ...
0
votes
0answers
9 views

django xml model specification?

I'm using django with many related projects. All those projects are using their own models. But unfortunately this is not DRY, because each model differ from each other very slightly, for example some ...
0
votes
0answers
6 views

Django: Routing user creation through custom RemoteUserBackend

I am creating a Django project which requires HTTP basic authentication over SSL. Users are authenticated against my company's LDAP server. This is working using the method described at ...
1
vote
2answers
9 views

Django 1.4 serving media files works, but not static

I am using Django 1.4 and for some reason i am able to serve media files, but not the static ones... Here is my code: settings: MEDIA_ROOT = os.path.join(BASE_DIR, 'media/') MEDIA_URL = '/media/' ...
1
vote
1answer
10 views

kwargs in django - how to put distinct() into kwargs

i have this query Location.objects.filter(locations_rate__rate=search_rate).distinct('id') how can i set distinct() into **kwargs? i tried: s_kwargs = {} s_kwargs['locations_rate__rate'] = ...
0
votes
0answers
7 views

Using formsets or create multiple model row in django admin

class BoxModel(models.Model): box_length = models.FloatField(default=1, help_text=_('Length')) box_width = models.FloatField(default=1, help_text=_('Width')) box_height = ...
1
vote
0answers
12 views

Change UUID format in Django foreign key

I have postgresql DB and using UUID as PK in my models. When I do something like model.rel_model.id it returns me uuid in 32 chars (without '-' separators, as uuid.hex does) - it so because I wrote ...
0
votes
2answers
12 views

Get referenced Model by field name on Django?

I have the following model on Django: class Statue(models.Model): id = models.IntegerField(primary_key=True) name = models.CharField(max_length=128L) ref_id = models.ForeignKey('Foo', ...
1
vote
0answers
14 views

No stacktrace with ` Internal Server Error`

I am in the process of developing a site. We have recently set up a public facing alpha installation. I am on the ADMINS list, DEBUG is False, and I am getting a few dozen emails about ERRORs. This ...
1
vote
0answers
17 views

django orm search with postgres

For small searches in PostgreSQL, http://django-orm.readthedocs.org/en/latest/orm-pg-fulltext.html can be used easily, as shown in the docs. Following are the steps, I used to implement it - ...
0
votes
0answers
15 views

django proxy models more than one Foreign Key Error

My model structure is as follows. class SuperModel(models.Model): field_1 = models.CharField(max_length=20) class child_A(supermodel): class Meta: proxy = True class child_B(supermodel): ...
0
votes
0answers
7 views

I18n does not seem to work while modeltranslation does (a bit)

I need to implement internationalization in my project, so i want to use i18n for static content while i use the app django-modeltranslation for the models. I support the following languages: en-us ...
0
votes
0answers
21 views

Python Server error

I'm sending data from my android application to python server using post request. I'ce tested it locally and works fine.When I uploaded it to a server, I ran the server on a port number in order to ...
0
votes
0answers
11 views

Django syncdb doesn't work after invoking inspectdb

I created a model from an existing PostgreSql database using inspectdb, when I try to do a syncdb,in order to generate the authorization tables, it generates the following error: CommandError: One or ...
0
votes
0answers
10 views

Django: admin inline displaying text-boxes rather than drop-downs

I have added an inline to the admin class for one of the classes in my django application. The problem I'm having is that the inline items are displaying as free-text boxes, rather than drop-downs (so ...
1
vote
0answers
20 views

Django file upload failure

I'm quiet new to django.I have met a problem when I tryied to write a page handling the uploading files.Here are the codes: models.py: class HomeworkContent(models.Model): homework = ...
0
votes
1answer
8 views

Uninstall djang-modeltranslation

We've decided that with Chrome's page translation support, it's too much work to keep up with the translation of the entire site for the benefit received. So, I need to remove/uninstall ...
0
votes
0answers
25 views

Django api api/add/2/+/3 vs api/method=add&expression=2+3

What is the community accepted way of building an api using django? Using the format /xxx/method/whatever or using a php like syntax? Thanks
0
votes
0answers
12 views

Django and openid single sign on - keep user logged in

I have created my own open id server based on janrain's pyton openid (https://github.com/openid/python-openid) This is simple django site that holds only user information and serves as single sign on ...
0
votes
1answer
23 views

How can I test whether Django is running in debug mode?

My settings file has: DEBUG = True The obvious method: if DEBUG: print 'debug' Does not seem to work: global name 'DEBUG' is not defined
0
votes
0answers
8 views

How to install and setup AWS Elastic Beanstalk Command Line Tool in Ubuntu? [closed]

I'm following this tutorial. And I have downloaded the Elastic beanstalk tools. Now I stuck with initializing the 'EB CLI tool'.! i.e, I don't understand this step: Screenshot of the tutorial Where I ...
1
vote
1answer
21 views

Protect my Django REST API (basic Authentication or anything else)

I'm trying to protect my Django restful api. I got two clients : my Django Front end application (Ajax requests on my server) a python application using httplib to make its own requests For now ...
0
votes
3answers
51 views

Filter queryset in django templates

I have a model as followed: class Venture(models.Model): name = models.CharField(_('name'), max_length=255) created = models.DateTimeField(editable=False) modified = ...
0
votes
0answers
9 views

Gigya openid provider “Failed connecting. Please try again later” error

I am implementing an openid provider server and I'm using the default gigya widget for a custom provider (with the default api keys). Everything works smoothly (discovery, association etc) up until ...
0
votes
1answer
17 views

Why doesn't my save method work in the admin?

In my model I overwrite the save-method for my blog model to auto-populate the slug field using the slugify method. class BlogPost(models.Model): title = ...
0
votes
2answers
14 views

Django fail to raise an error when a minimum length password is required

I have an form that allows a user to create a user account. I also enforce a minimum password length of 8 and when that is breached , An error would be raise . The problem is , it doesn't raise an ...
1
vote
0answers
14 views

Django ORM - Sum of calculated time differences in a list

Python newbie here... I have a bunch of RoomBooking events with a start and stop time in my Django model, and I need to retrieve the total duration of every event within a month, grouped by company. ...
0
votes
1answer
11 views

how can i configure paypal for multi-users in django?

I have worked on paypal with django. I integrated it with my app with those settings (settings.py): PAYPAL_WPP_USER = '****' PAYPAL_WPP_PASSWORD = ****' PAYPAL_WPP_SIGNATURE = '*****' ...
0
votes
1answer
29 views

truncate characters in a HTML element - Django Templates

In my django templates i have a list of objects which is rendered as follows: <li class="keys"> {% for key in job.key_list|slice:":2" %} {% if not forloop.last %} <a ...
1
vote
1answer
25 views

How to verify HttpResponseRedirect is to an external site?

I'm using the following middleware snippet: class AjaxRedirect(object): """ Instead of returning a 302 for AJAX requests, instead we should return a 200 with a location to redirect to so ...
0
votes
0answers
12 views

How to get the page object in django admin pagination

If i have generic list view then i do this for numbering the objects in other pages {{ forloop.counter0|add:page_obj.start_index }} but if i am using the Django admin pagination then i can't use ...
0
votes
1answer
24 views

GET url in search and sort logic

I have this url after you hit the search button: 127.0.0.1:8000/results/?name=blab&city=bla&km=12 my view: def search(request): name = request.GET.get('name') city = ...
0
votes
0answers
19 views

django-jqgrid, how do i show a field from a fk relation in the grid?

I'd like to use the grid to show data for stock reservations. For each reservation i like to show type, quantity and reservation date, there can be multiple types of reservations and the type ...
0
votes
0answers
17 views

trying to implement date facets hay-stack

I'm trying to implement a faceted search on date this is my query: sqs = SearchQuerySet().facet('job_location').facet('post_type').facet('job_type').facet('company_name').date_facet('start_date', ...
1
vote
0answers
14 views

Django threaded comments with up/down-voting (like Hacker News or Reddit)

I'm new to Django. I'm trying to build a discussion app in Django that, like Reddit and Hacker News, is fully threaded and sorts each comment by up/down vote. I've been using the django-voting app, ...
0
votes
1answer
17 views

django under virtualenv causing importerror

In ubuntu lucid ,I installed python2.7.5 and set up a virtualenv .In the terminal I typed workon envpy275 and using pip installed these sw from requirements file python==2.7.5 Django==1.4.3 ...
-1
votes
0answers
25 views

how logging in django class based views work

I'm using Logbook for logging in python Logging works with a function view and it outputs in the console from logbook import Logger log = Logger('Logbook') def index(request): ...
0
votes
0answers
31 views

How can I make my Django code consume less memory?

I have an admin panel on my site. I wish to do a one time initial data load and have created a button on my webpage which generates a http request which eventually makes its way to the following ...
0
votes
0answers
6 views

floppyforms osmbasewidget disoriented

I'm using the osmbasewidget from floppyforms but there seems to be an error, and when i check the developer tool on chrome there's this error that goes like: is there something that im missing, im ...
2
votes
0answers
25 views

Lose data with django-south schemamigration

I have a django model with around 500k entries in mysql database. I'd like to add another field to my model: site = models.ForeignKey(Site, verbose_name=_('Site'),null=True,blank=True). But I lose ...
0
votes
1answer
15 views

TypeError: Error when calling the metaclass bases sequence item 2: expected string or Unicode, int found

I have the following models.py from django.db import models import datetime class Build(models.Model): build_name = models.CharField(max_length=60) description = ...
0
votes
0answers
51 views

run python manage.py shell occurs errors

E:\Users\liuzhijun\workspace\mysite>python manage.py shell --------------------------------------------------------------------------- TypeError Python 2.7.4: ...
0
votes
2answers
24 views

Django check if form choice is empty

In a template how is it possible to check if a ModelChoiceField is empty? This is my form: class BatchForm(forms.ModelForm): def __init__(self, user=None, *args, **kwargs): ...
0
votes
0answers
13 views

django-zinnia-blog: decorators to mixins

with django-blog-zinnia I have this older code from zinnia.views.decorators import update_queryset def qset(): return BlogEntry.objects.filter(status=2).filter(creation_date__gte=cutoff) ...
0
votes
0answers
15 views

Error 503 in OpenShift server

That's my first Django project and I'm trying to deploy it to OpenShift, but I have a problem: when I'm trying to open app's page, I see "503: Service Temporarily Unavailable" message. I thought that ...
0
votes
1answer
16 views

django object is not iterable using serializers.serialize

I'm getting the following error, Template' object is not iterable def get_AJAX(request, id): data = serializers.serialize("json", Template.objects.get(pk=id)) return HttpResponse(data) ...
0
votes
0answers
13 views

Error while using subprocess with Django, Apache

I am trying to run an executable residing in the "/tmp" folder using subprocess.popen from Django. I have configured Django with Apache using mod_wsgi I always get a signal error '127'. I get proper ...
1
vote
1answer
34 views

How to pass context variables from multiple view functions to the same template

I have a single template that is serviced by multiple view functions. As an example, read_posts() view returns all posts with a GET, add_post() view adds a new post with a POST. I may have other post ...
0
votes
1answer
20 views

Adding and updating ListField with Mongoengine

Using Mongoengine with Django and trying to form a tag cloud. To each item I would like to attach one or more tags. Something similar like the tags are used here (below each question asked). After ...

1 2 3 4 5 1036