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

How do i pass a form data as context?

I have this PDFview class now i want to use it in any form template so i can see preview of that form data before sending data. class PDFView(View): def get(self, request, **kwargs): template = ...
0
votes
0answers
6 views

Django: save model object of a ModelForm

I have a ModelForm: class UploadForm(forms.ModelForm): class Meta: model = Image fields = ['image'] which is based on model Image class Image(models.Model): def ...
-6
votes
0answers
23 views

How can i have this on my website? [closed]

http://www.highsnobiety.com/2012/10/15/how-just-do-it-was-conceived-by-wieden-kennedy-for-nike/ the - SHARE THIS PAGE thing on the bottom of the page?
0
votes
1answer
14 views

Free dates in reservation system

I am working on a reservation system, and I can not find a good way to select free dates. Here is my model: class rental_group(models.Model): group_title = models.CharField(max_length = 30) ...
-1
votes
0answers
11 views

Trying to create form preview

I am trying to create form preview in pdf. But cant get it to work. This is my pdf class class PDFView(View): def get(self, request, **kwargs): template = ...
0
votes
0answers
8 views

Gunicorn Connection in Use: ('0.0.0.0', 5000)

I installed redis this afternoon and it caused a few errors, so I uninstalled it but this error is persisting when I launch the app with foreman start. Any ideas on a fix? foreman start 22:46:26 ...
0
votes
1answer
20 views

Django UpdateView wont delete tha old entry if primary key is edited

So lets say we have this model: class Student(models.Model): am = models.SmallIntegerField(unique=True, primary_key=True) # XXX: max_value = 10000 date_enrolled = models.DateField('Date ...
0
votes
2answers
17 views

Django admin change form load quite slow

One of my Django websites has following database models: In Django App “common”: class Collection(models.Model): name = models.CharField(max_length = 255, unique = True) _short_name = ...
1
vote
1answer
13 views

Adjust django forms - Comment Form CSS

I have inserted a following command form to my template: {% if user.is_authenticated %} {% get_comment_form for object as form %} <form action="{% comment_form_target %}" method="POST"> ...
0
votes
2answers
20 views

Django: mysql query with arguments

i have a MySQL query like this cursor.execute("GRANT USAGE ON %s.* TO %s@%s", [db, user, host]) Python generate a query like GRANT USAGE ON 'db'.* TO 'user'@'host'; But the apostrophes around ...
0
votes
1answer
15 views

Django Admin Error - unbalanced parenthesis

When I point my browser to localhost:8000/admin, I get error at /admin/ unbalanced parenthesis The code that produces this error: Project - urls.py: urlpatterns = patterns('', ...
0
votes
2answers
31 views

Django - When is a query made?

I want to minimize the number of database queries my application makes, and I am familiarizing myself more with Django's ORM. I am wondering, what are the cases where a query is executed. For ...
1
vote
0answers
14 views

STATIC_URL blank in production mode

For some reason within production static url is blank but works perfect in development i.e debug false Code: <link href="{{ STATIC_URL }}css/custom.css" rel="stylesheet"> In development ...
1
vote
2answers
16 views

django - catch multiple exceptions

I have this view function: def forum(request): qs = Forum.objects.all() try: f = Forum.objects.filter().order_by('-id')[0] <------------problem return ...
0
votes
1answer
26 views

jQuery won't trigger click event

I'm trying to use jQuery to simulate a click on an "Add Row" link. I want to trigger the javascript function attached to the link. The function that adds the row is in a separate file, so I can't ...
0
votes
1answer
28 views

django filtering vs python filtering with prefetched objects

I'm trying to optimize some Django code, and I've got two similar approach that are performing differetly. Here are some example models: class A(models.Model): name = ...
0
votes
1answer
13 views

Django inner join on self. Is there a more efficient approach?

I have a model to track followers. This is a similar idea to every other social network site out there. Right now my model looks like this. class Follow(models.Model): follower = ...
0
votes
0answers
13 views

sudo permission issue LoadModule wsgi_module [migrated]

I'm trying to run this command on Ubuntu: echo "LoadModule wsgi_module /usr/lib/apache2/modules/mod_wsgi.so" > /etc/apache2/mods-available/wsgi.load I get a permission issue, normally this can ...
0
votes
0answers
7 views

Django Ouath2 migrate key error

Welcome, when i'm try to syncdb --migarte it gives me an error: $ python manage.py syncdb --migrate Syncing... Creating tables ... Installing custom SQL ... Installing indexes ... Installed 0 ...
1
vote
1answer
11 views

Django model: use generator to create data

I have a model that looks like this: class ab(models.Model): a = models.CharField(max_length=8, primary_key=True) b = models.CharField(max_length=120) Now instead of ab(a = 'a', b = 'b').b ...
0
votes
0answers
23 views

Django check if url is local

I have a file upload form that uses ajax to upload images. Something like this: $('input[name=image]', form).on('change', function() { var val = $(this).val(); // Don't proceed ...
0
votes
1answer
13 views

How to use uploaded file info to fill in form fields

I am trying to create a file upload form where a user uploads a file and then I do some processing on it. After processing the file, I want to redirect the user to another form that is partially ...
0
votes
0answers
14 views

How to select areas from openstreetmap in django?

I would like to build a django webapp. One part of this should allow the user to interactively select geographic areas from a map. The map should come from openstreetmap, and the user should be able ...
0
votes
2answers
27 views

Django Get ID of the object in save()

I have some fixed number let say it is num = 1000 Now I have field which need to be sum of the object.id and num. I need this in save() something like below. def save(self, *args, **kwargs): num ...
0
votes
1answer
8 views

Filtering ListAPIView in django-rest-framework

I'm using ListAPIView, but I can't filter the results. My code is: class UserPostReadView(generics.ListAPIView): serializer_class = PostSerializer model = serializer_class.Meta.model ...
0
votes
1answer
9 views

Any ideas why my fixture won't load for Django test?

This is the first time I've tried loading a fixture for my unit tests in Django, and I have no idea why it won't load. I dumped the data from my app with dumpdata command and that works fine. When I ...
0
votes
1answer
26 views

Download external html content client side, send to django server, send processed data back to client

this is what I want to do. I am a newbie at javascript and django. Please let me know how I can go about doing this: Client clicks button on web page, javascript downloads html content from external ...
0
votes
2answers
18 views

Best way to serve files?

I'm a novice web developer with some background in programming (mostly Python). I'm looking for some basic advice on choosing the right technology. I need to serve files over the internet (mp3's), ...
2
votes
4answers
47 views

django - url tag not working

I have this form: <form action="{% url create_question %}" method="post"> and this url.py url(r'^neues_thema/(\w+)/','home.views.create_question',name="create_question"), but I am ...
0
votes
1answer
10 views

Update a formset instance through

the formset are stored correctly in the database, this is the code def crear_encuesta(request): HotelFormSet = formset_factory(HotelForm, extra=6) RestauranteFormSet = ...
0
votes
1answer
11 views

exclude fields at moment to create new user since the form django

I have read a lot but i don't find any example with User models if the user that is creating a new user is superuser, I need to show every fields. Form.py class AddUserForm(forms.ModelForm): ...
2
votes
0answers
14 views

Tastypie: same query than in views but no matches

I'm using this query in tastypie resource but i didn't have any result: In the views i have the same query and it's working, i don't understand why Tastypie doesn't get my posts. I get "No Post ...
0
votes
1answer
17 views

Django django-activity-stream sql “data” column does not exist?

I'm using django 1.5 with https://github.com/justquick/django-activity-stream. I did an action.send like action.send(request.user, verb="wrote", action_object=Message, target=Group) and got this ...
0
votes
1answer
8 views

Test a custom filter in admin.py

I've the following filter in my admin.py file: class parentCategoryFilter(admin.SimpleListFilter): title = 'parent category' parameter_name = 'parent_category' def lookups(self, request, ...
0
votes
1answer
10 views

django postgres reload dump error

Please can any one tell me why i get this message DatabaseError: Could not load contenttypes.ContentType(pk=10): permission denied for relation django_content_type recently dumped my database to a ...
0
votes
0answers
15 views

Django reCAPTCHA does not validate the response

I'm trying to implement Django reCAPTCHA on my forms . The problem is , it does not validate the reCAPTCHA session everytime , I correctly submit the form. I attempted to submit the reCAPTCHA form ...
-5
votes
0answers
19 views

how to make the users of the application can authenticate? Django

I create users in my web application and I would like that they can authenticate to my web site. How can I do? thank you,
0
votes
0answers
9 views

Django translation.get_language() not returning activated language

I wrote a tiny middleware class that looks at the URL for a prefix and activates a translation based on that prefix (e.g. http://website.com/fr/somepage would load somepage with a French translation). ...
1
vote
1answer
13 views

Global name 'displayhtml' is not defined

I'm trying to implement the google reCAPTCHA plugin into my form by following this tutorial http://blog.bixly.com/post/4069885657/how-to-add-recaptcha-to-your-django-forms The steps look straight ...
1
vote
1answer
15 views

how to render a page into the target frameset in jquery?

I have two frame in my website. frame A with a navigation bar and another frame B with the main content. frame A is a directory listing, a jstree object, which could display all the files' name in my ...
0
votes
0answers
5 views

Custom Django MultilingualTextField model field

I'm trying to create Multilingual text field in Django for my project. I use JSON to store translated text in database and write custom code in field to retrieve it in the right language. For example: ...
0
votes
1answer
10 views

Workshop register web with Django

I want create workshop registration web with Django. I am using User default model of Django also create this model for save workshop lists of every users: class UserProfile(models.Model): user = ...
0
votes
1answer
17 views

django redirect after login not working “next” not posting?

I have a login page which is working fine with the exception of the redirect to the referrer page. The user gets an email with a direct link within the app, they (in this example) are not logged in ...
0
votes
0answers
28 views

Custom admin actions

I'm using Python 2.7 and Django 1.5.1 for an energy graphing web app that I'm building. In order to collect data, the admin must first add the energy collection device to the Django admin panel. Each ...
0
votes
3answers
13 views

Django 1.5 employee-management where some employees can login some can't

So I want to keep track of about 100 employees but only five of them should be able to log in into the backend (the rest starts with no loginpossibilities at all) what's the best way to solve that ...
0
votes
2answers
20 views

How to specify context of translation in Django {% trans %} {% blocktrans %}?

Documentation of Django says Contextual markers are also supported by the trans and blocktrans template tags. but it not explained how to do it? Can you help marking translation context since I have ...
1
vote
0answers
21 views

Python SSL connection “EOF occurred in violation of protocol”

I'm using Django Celery task to connect to Facebook Graph API with requests lib using Gevent. Issue I'm constantly running at is that every now and then I get EOF occurred in violation of protocol ...
0
votes
0answers
19 views

Tastypie - unicode escape error

I have some problem with adding tastypie to installed apps (I'm not importing anything from tastypie in any module). When I use Python 3.3 I got an error: SyntaxError: (unicode error) 'unicodeescape' ...
0
votes
1answer
10 views

Get record number of total items in ticket paginator

i have applied paginator on my query objects. when i get records greater then 15, they are skpped to the 2 pages. that words fine for me. but i want to ask what if i want to know my record number in ...
-1
votes
0answers
13 views

There is no make_message.py in my django/bin,how to deal with this?

There is no make_message.py in my django/bin,how to solve the problem?much appreciate.

1 2 3 4 5 1043