Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
2k views

How do I use Logging in the Django Debug Toolbar?

I would like to output debug messages in my django app at different points in a view function. The docs for the django-debug-toolbar say it uses the build in python logging but I can't find any more ...
8
votes
2answers
3k views

what is the right way to validate if an object exists in a django view without returning 404?

basically just verify if an object exists and return the object. then based on that perform actions. I'm wondering whats the right way to do it without returning a 404? try: listing = ...
7
votes
5answers
340 views

django-admin: Add extra row with totals

I'm using the standard django admin module to display a list of rows. One of the columns is a numerical field. I'd like to display an extra 'totals' row that has most of the columns as blank, except ...
7
votes
1answer
2k views

How do I use CreateView with a ModelForm

I get an error in my class AuthorCreateForm when I submit my form. NameError self is not defined How do I use a CreateForm? I have created a class in my Author.py file from django.views.generic ...
6
votes
3answers
830 views

How to use permission_required decorators on django class-based views

I'm having a bit of trouble understanding how the new CBVs work. My question is this, I need to require login in all the views, and in some of them, specific permissions. In function-based views I do ...
6
votes
1answer
139 views

How can i order by a calculated field complex in Django?

I have a model like this: class Program(models.Model): votes_sum = models.IntegerField(max_length=10, default=0) voters_counter = models.IntegerField(max_length=10, default=0) ... I ...
6
votes
3answers
488 views

Django: Breaking up views

This is really just a "best practices" question... I find that When developing an app, I often end up with a lot of views. Is it common practice to break these views up into several view files? In ...
5
votes
1answer
365 views

Test Django views that require login using RequestFactory

I'm new to Django and I'd like to unit test a view that requires the user to be logged in (@login_requred). Django kindly provides the RequestFactory, which I can theoretically use to call the view ...
5
votes
1answer
813 views

Example of Django Class-Based DeleteView

Does anyone know of or can anyone please produce a simple example of Django's class-based generic DeleteView? I want to subclass DeleteView and ensure that the currently logged-in user has ownership ...
5
votes
2answers
523 views

How to read variables added to RequestContext inside class-based generic views?

With in regular views RequestContext variables can be accessed just like request.VARNAME: def example(request, template_name='stuff_list'): return render_to_response(template_name, ...
5
votes
2answers
369 views

Django test not loading fixture data

I have written tests for a Django project that i am working on, but one particular fixture fails to load. The fixture is generated using dumpdata and i havent fiddled with it at all. I can load the ...
5
votes
3answers
1k views

How to send a session message to an anonymous user in a Django site?

I often show messages about user actions to logged in users in my Django app views using: request.user.message_set.create("message to user") How could I do the same for anonymous (not logged in) ...
4
votes
4answers
248 views

Adding a user/accounts table to Postgres in Django View

Go to edit 2 Calling the following adduser function in views.py. I save the user first because it's id (automatically created by Django upon INSERT) is the primary/foreign key for accounts and ...
4
votes
2answers
56 views

Django: What's the use of the context_instance parameter in the render shortcut function?

Documentation on 'Render' shortcut According to the link above, the context_instance parameter is defined as The context instance to render the template with. By default, the template will be ...
4
votes
1answer
65 views

What's the difference between returning a `HttpResponseNotFound` and raising a `Http404` in Django?

There are apparently two different ways to return a 404 error in Django: by returning a HttpResponseNotFound object or by raising an Http404 exception. While I'm using the former in my project, it ...
4
votes
2answers
332 views

Is save_m2m() required in the Django forms save() method when commit=False?

The docs seem pretty firm that this is indeed the case.... https://docs.djangoproject.com/en/dev/topics/forms/modelforms/#the-save-method And I specifically refer to this section: Another side ...
4
votes
1answer
284 views

Django Class-Based Generic Views and ModelForms

Like much documentation on generic views in Django, I can't find docs that explicitly describe how to use the new Class-Based Generic Views with Django Forms. How is it done?
4
votes
2answers
257 views

Reducing db queries in django

I have a view that searches through a database of movie credits, and converts and returns results like so -- # From the following results: Avatar - James Cameron - director Avatar - James Cameron - ...
4
votes
3answers
216 views

Determine the age of a session in django

How can I determine the age of a session object in django?
4
votes
1answer
2k views

Django models are not ajax serializable

I have a simple view that I'm using to experiment with AJAX. def get_shifts_for_day(request,year,month,day): data= dict() data['d'] =year data['e'] = month data['x'] = ...
4
votes
4answers
3k views

Django - Getting last object created, simultaneous filters

Apologies, I am completely new to Django and Python. I have 2 questions. First, how would I go about getting the last object created (or highest pk) in a list of objects? For example, I know that I ...
4
votes
2answers
181 views

Getting all items less than a month old

Is there a way to get all objects with a date less than a month ago in django. Something like: items = Item.objects.filter(less than a month old).order_by(...)
3
votes
1answer
75 views

How do I create list and detail views for django-taggit?

I have a fairly simple model that uses Django Taggit for tagging. Everything works great, but now I'd like to expand some functionality and I'm a little confused. What I want is two views. One that ...
3
votes
1answer
60 views

Pass a variable ( a flag ) from urls.py to views.py in django

I am quite new to django. This may be a very easy stuff for a seasoned coder but I can't figure out how I could easily accomplish this feature. I currently have a 'blog' app which will display ...
3
votes
3answers
101 views

Custom Regroup Order

I would like to reorder a queryset in a Django template using a custom ordering scheme. This is the template code: {% regroup teams_at_school by season.school_year as teams %} <ul ...
3
votes
1answer
103 views

Django view response time issues

Hi i have lots of objects which i get from query, the queryset is not yet evaluated, when i pass objectlist to paginator object it took 14 seconds to return paginator object, it is because it is ...
3
votes
1answer
112 views

Django unhandled exception response status code

Running django 1.3. If I have an unhandled exception in a view, e.g. def test(request): raise Exception('error') GETing the page (here via wget): HTTP request sent, awaiting response... 200 OK ...
3
votes
2answers
147 views

Why won't my file save to instance (it saves to disk…)?

I can get my file to save to disk where I tell it to, but can't get it to save to the instance and I haven't the slightest idea why! models.py class Song(models.Model): name = ...
3
votes
1answer
387 views

Django: parametric class-based views

I am trying to use generic CreateView class to handle forms for a set of models inherited from the same base class. class BaseContent(models.Model): ... class XContent(BaseContent): ... ...
3
votes
1answer
87 views

Change the default domain of Client() in unittest of Django

I am writing a unit test for Django views. class TestLog(unittest.TestCase): """Test for Contact""" def setUp(self): self.c = Client() try: self.bob = ...
3
votes
1answer
311 views

Auto log-in and re-send email

I have a django-registration up and working. I would like to add two additional features to it and am having a bit of difficulty understanding the inner-workings of the log-in process. 1) When a user ...
3
votes
3answers
227 views

Passing a variable in redirect in Django

I'm trying to pass a variable using the redirect function, but it is returning none. def one: # define location variable here return redirect(getting_started_info, location=location) def ...
3
votes
1answer
145 views

Django - waiting time for a particular view in production takes too long

I've been wrestling with this problem for at least two days. There's a view that produces a page showing all phone calls that a certain user/phone extension made. Nothing fancy, just a long page, ...
3
votes
3answers
165 views

Django - Sort the list into 3 columns on templates

My Models: Item: name desc order created_at And I got a list of items from Item like this: items = Item.objects.all().order_by('order', '-created_at') Now I send this list into ...
3
votes
1answer
207 views

How to get an app name using python in django

If you are in the view and want to retrieve the app name using Python ( the app name will be used for further logic ), how would you do it ?
3
votes
2answers
193 views

Django Show user that upload is in progress

I have a filemanager application that allows users to upload files to the server and ofcourse download them. Now in the state it is when an user starts uploading the browser only shows that small ...
3
votes
5answers
139 views

Converting a nested dictionary to a list

I know there are many dict to list questions on here but I can't quite find the information I need for my situation so I'm asking a new quetion. Some background: I'm using a hierarchical package for ...
3
votes
4answers
666 views

Why does DEBUG=False setting make my django Static Files Access fail?

Am building an app using Django as my workhorse. All has been well so far - specified db settings, configured static directories, urls, views etc. But trouble started sneaking in the moment I wanted ...
3
votes
1answer
123 views

Detect Decorator in Python

In python, is it possible to detect if there is a decorator on another function? Specifically, I'm trying (in django) to write some middleware that will detect if the view being processed has been ...
3
votes
7answers
1k views

Python: How to find script's directory

Consider the following python code: import os print os.getcwd() I use os.getcwd() to get the script file's directory location. When I run the script from the command line it gives me the correct ...
3
votes
1answer
454 views

Implement Django Simple Captcha with the existing django.contrib.auth.forms

I would like to add captcha on my django registration form using Django Simple Captcha found here: http://code.google.com/p/django-simple-captcha/ This works great if you create a new form but I'm ...
3
votes
2answers
475 views

Get django object id based on model attribute

I have a basic model named "Places" which has this view: def view_index(request, place_name): The user will access that view with a URL like this one: http://server.com/kansas "kansas" is a ...
3
votes
2answers
592 views

Django redirect using reverse() to a URL that relies on query strings

I'm writing a django application with a URL like 'http://localhost/entity/id/?overlay=other_id'. Where id is the primary key of the particular entity and overlay is an optional query parameter for a ...
3
votes
3answers
1k views

Caught TypeError while rendering: 'BoundField' object is not iterable

I am trying to display a list of tags as the tag.name (instead of the list). However when I try and run a for-loop over the list, it throws the "Caught TypeError while rendering: 'BoundField' object ...
3
votes
3answers
145 views

How to use Django ORM to get a list by year of all articles with an article count

I am trying use the django ORM to get a list by year of all my articles with an article count beside it, such as this: 2010 (5 articles) 2009 (4 articles) 2008 (9 articles) I have tried things such ...
3
votes
4answers
195 views

Two foreign keys and a value in django template

I am a newbie to django, so the question might be dumb, but please feel free to teach me the right way if you know it. I tried googling the issue, but I am still at loss. Here's my problem: I have a ...
3
votes
2answers
511 views

Refresh template in Django

I have a view like this: def form1(request): if request.method == 'POST': form = SyncJobForm(request.POST) if form.is_valid(): # do something in_progress = True ...
3
votes
1answer
116 views

Shifting thinking from CakePHP to Django - a monolithic views file?

I'm trying to get started with Django, and have previously worked with CakePHP, and so my MVC background comes out of that. I'm aware of Django's slightly different MTV architecture, and am fine with ...
3
votes
4answers
121 views

URLs and side effects (Django)

I'm wondering if it's considered okay (particularly, in Django) to have a URL that's only intended for actions with side effects, that's only intended to be accessed by POST, and that is basically ...
3
votes
1answer
1k views

django delete object

in a mini blog app, i want to create a delete function, so that the owner of the blog can delete his entries (and only his entries). I guess that the only methos for doing do, is using a form. Though ...

1 2 3 4 5 21