Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
1k views

In plain English, what are Django generic views?

The first two paragraphs of this page explain that generic views are supposed to make my life easier, less monotonous, and make me more attractive to women (I made up that last one): ...
5
votes
1answer
347 views

Problem with class based generic views in Django

I'm trying to write a CRUD application using Djangos class based generic views. Following is the code i wrote to create a new user in the db. from django.views.generic import CreateView from ...
4
votes
1answer
281 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?
3
votes
2answers
570 views

Accessing request.user in class based generic view CreateView in order to set FK field in Django

So I have a model that includes: class Place(models.Model): .... created_by = models.ForeignKey(User) My view is like so: class PlaceFormView(CreateView): form_class = PlaceForm ...
2
votes
1answer
706 views

Using class based generic view DetailView with a ModelForm reveals a bug - how to proceed?

I've been impressed how rapidly a functional website can go together with generic views in the tutorials. Also, the workflow for form processing is nice. I used the ModelForm helper class to create a ...
2
votes
2answers
156 views

Django - Generic View Subclassed - url Parameters

I need to display a detail page for a video with some other data. For that I use DetailView that I have overridden to add some variables to the context. Here are the code parts: #urlconf #... ...
2
votes
1answer
366 views

Ajax views with django

I'm working on a pretty big project right now where every view should be accessible via a normal request and an ajax request via the same url. I'm looking for ideas on how to create a small framework ...
2
votes
2answers
507 views

Django: Display Generic ModelForm or predefined form

I have 3 models with various fields in each. For 2 of the models, I'm fine with using a generic form (through Django's create_object) to request data. I wrote a function that accepts the model name ...
2
votes
1answer
596 views

Django generic views with multiple parameters

Is it possible to use a generic view with additional parameters in the URL mapping - i.e. I got the following model: class Route(models.Model): area = models.ForeignKey(Area) slug = ...
2
votes
1answer
356 views

Pass a form created with captured url parameters to a generic django view?

This seems like it should be obvious, but the solution is eluding me. Normally I would just write a simple view function which would populate an appropriate form and pass it along to the view, but the ...
2
votes
1answer
216 views

How to approach creating Related Links generic (like Comments/Tags) in Django

Since I have not found a Related Links app that works with Django 1.0/trunk, I was looking to create my own. I would like to attach "Related Links" to models in the same generic way that Comments ...
1
vote
1answer
26 views

Multiple Templates in Generic ListView in Django

I have a list of objects that can be seen as a separate page or within another page (though ajax). So, in my templates, I have a "list_template.html" that only has the list itself, which I use when ...
1
vote
1answer
36 views

How to use django date based generic views

I have been trying to django date based generic views but have not been successful. The documentation does not give an example, so I have not understood them well. This tutorial here shows how to use ...
1
vote
2answers
63 views

Django: UpdateView restrict per user

I have a site where users can create and edit their own lists. I'm using the generic view CreateView to allow users to create lists. I would like to use the generic view UpdateView to allow them to ...
1
vote
1answer
65 views

How to extend Django generic year archive view?

I'm using Django's generic year archive view to display event objects by year. This may or may not be the best way to do this since I found that Django restricts the object list to the year being ...
1
vote
1answer
79 views

How to install a custom upload handler in a Django generic view?

In order to provide progress feedback of file uploads I need to install a custom upload handler for a specific view. This is documented for "classical" Django views at ...
1
vote
1answer
130 views

Converting old function-based generic CRUD views to the new style class-based generic CRUD views

I've been using Django's generic CRUD views for quite a few things in my project. I'd now like to begin migrating to new style class-based generic CRUD views in DJango 1.3. I didn't finds the docs to ...
1
vote
1answer
50 views

django how to loop through the context object passed back by a generic detailview?

I'm using a generic DetailView to display a project object. Can I loop through the fields somehow in my template or do I have to place every field. url(r'^(?P<slug>[-\w]+)/$', ...
1
vote
1answer
61 views

How do i display inlines with DetailView?

I have a Project model. This model has Days which are inlines. How do I display them using a DetailView? My views.py looks like this: class ProjectDetailView(DetailView): queryset = ...
1
vote
1answer
239 views

Rolling your own generic views in Django

The Django documentation mentions in the Class-based generic views that the DetailView is composed from: View, SingleObjectMixin, and SingleObjectTemplateResponseMixin. I am experimenting with this, ...
1
vote
2answers
46 views

How can reduce the number of URL rewriting configs in Django

I have this listing in django. These looks identical. Is there any way to make one line from these four lines (r'^book/list/$', list_detail.object_list, book_info), (r'^author/list/$', ...
1
vote
3answers
171 views

Django - use generic views or not?

I was going through quick poll tutorial on the Django site, and the last topic is introduction of generic views. A convenient way to bypass the need of creation of custom views for every URL pattern. ...
1
vote
1answer
226 views

Help with django date based generic views

I am using date based generic views for the first time. I have gotten the archive page to work, but for some reason when I create a link to the detail page using get_absolute_url method, the archive ...
1
vote
2answers
268 views

Django - Generic Views - Object_list - What's the benefit?

I want to use the object_list generic view. But I can't tell what benefit it gives me besides pagination? It seems like I still need to write my own template? How is this faster than writing my own ...
1
vote
1answer
887 views

How can I make a Generic Class Based Create View for a Model?

What I'm trying to do is Django boilerplate for functional views. Any help here is very much appreciated, as the docs show examples for the template view and list view, but I've found very little for ...
1
vote
1answer
225 views

generic views: object_list how to pass request variable

How to pass request variable in generic views to a queryset. For example i need to pass req_brand_slug from request to a filter in queryset: all_by_brand = { 'queryset': ...
1
vote
1answer
104 views

How to set-up generic views in an application's urls.py?

Let's say I have a project's urlconf which includes myapp's urlconf: urlpatterns = patterns('', (r'^myapp', include(myapp.urls)), ) and a myapp/urls.py with some routes defined: urlpatterns = ...
1
vote
3answers
396 views

how to send success message if we use django generic views

I am new to django (1.2.4). I have created some crud with generic views. But How can I show something like "The student was added successfully" when student is created using django's messaging ...
1
vote
1answer
1k views

django 'str' object is not callable

I have a problem creating an URL view in django. It gives me this error (ferrol is a Space object): TypeError at /spaces/ferrol/ 'str' object is not callable Request Method: GET Request URL: ...
1
vote
3answers
453 views

Django Generic object_list pagination. Adding instead of replacing arguments

I'm having some trouble with the django generic object_list function's pagination not really being "smart" enough to compensate my daftness. I'm trying to do a url for listing with optional arguments ...
1
vote
0answers
151 views

django generic view pagination by item id (not page number)

I love the ease of django's pagination system, but is there anyway to tweak it where it's paginating by item id instead of page number? Because I am ordering in descending order, if there is an update ...
1
vote
2answers
191 views

Django Generic View - Access to request

I am using django generic views, how do I get access to the request in my template. URLs: file_objects = { 'queryset' : File.objects.filter(is_good=True), } urlpatterns = patterns('', ...
1
vote
1answer
280 views

Filter results for Django paginator in template

I'm filtering out results from my page_obj in a generic view to only show entries published in the same language as the languge currently set by django-cms ...
1
vote
1answer
170 views

How to get first top five objects with django.views.generic.date_based.archive_index?

I'm trying to display the latest 5 posts using a generic view like this: urlpatterns = patterns('', (r'^$', 'django.views.generic.date_based.archive_index', { 'queryset': ...
1
vote
1answer
276 views

Problem using generic views in django

I'm currently working with django generic views and I have a problem I can't figure out. When using delete_object I get a TypeError exception: delete_object() takes at least 3 non-keyword arguments ...
1
vote
2answers
182 views

Django throws 404 at generic views

I'm trying to get the generic views for a date-based archive working in django. I defined the urls as described in a tutorial, but django returns a 404 error whenever I want to access an url with a ...
1
vote
2answers
477 views

django dynamic Q objects in generic view

I want to be able to pass a variable caught in the URL to a Q object for a generic view. I created a generic view which is imported as my_views.view which handles things like pagination, sorting, ...
1
vote
1answer
630 views

URL to date-based generic view in django template?

Is there an easy way to get the URL to a Django date-based generic view (specifically object_detail) from a template? Given a URL conf like this ...
1
vote
2answers
335 views

Can I use Django's Generic Views with google-app-engine-django?

Put simply, is there a way to get generic views to work? If I try the following in urls.py: publisher_info = { 'queryset': Publisher.objects.all(), } urlpatterns = patterns('', ...
1
vote
1answer
178 views

Django: use archive_index with date_field from a related model

Hello (please excuse me for my ugly english :p), Imagine these two simple models : from django.contrib.contenttypes import generic from django.db import models class SomeModel(models.Model): ...
1
vote
3answers
7k views

NoReverseMatch Exception help in Django

I'm fairly new to python and following along with part 4 of the tutorial for the Django framework here. I'm trying to implement generic views for the polls app--my code seems correct (as far as I can ...
0
votes
1answer
15 views

Django auth_view and generic class-based views

Is it safe to code against django's auth_view for password_change or is there any class-based view that I can use? I am converting all my function based views to class based views, but I have coded ...
0
votes
1answer
21 views

Django test failing with request.user in get_inital in generic CreateView

I have a generic view like this: class SaveView(CreateView): def get_initial(self): # Get the initial dictionary from the superclass method initial = super(SaveView, ...
0
votes
0answers
23 views

Django Generic Views - Update multiple models/forms on one page?

My use case: User enters a long form (a Django form wizard) but afterward needs to make a change to the submission (using an UpdateView). All changes must have an associated change comment ...
0
votes
1answer
25 views

Manipulate object after generic 'create_object' view (python/django)

Is it possible to manually add field entries to an object that has been created with the generic view? Eg, from django.views.generic.create_update import create_object def create_thing(request): ...
0
votes
3answers
60 views

Django: is there a generic handler to insert a POST object directly into the database?

Django: is there a generic handler to insert a POST object directly into the database? I find myself writing a lot of handlers that look like this. def ajax_storeObject(request): if ...
0
votes
1answer
31 views

Django: add field to a ModelForm in CreateVView.form_valid

I have users creating lists in my site and I'm using the generic CreateView to allow them create them. One of the fields of a list is the owner (who creates it). It does not make sense to ask users ...
0
votes
1answer
35 views

Django Generic Views, design guide

I accept that the question is a bit subjective, and that it does not pin point at certain technical doubt/query, but i wanted to know. I am a newbie in django, after 3-4 months of doing apps in ...
0
votes
1answer
14 views

How to pass an attribute for filter in date_based generic views in django

I am using date based generic views for my blog application. I want to use these generic views for displaying all the blogs of a particular user archived according to the date. For this the url that I ...
0
votes
1answer
68 views

What are the use cases for class based generic views for django

I am trying to write some generic boiler plate code for creating facebook apps. I am writing a separate FacebookUser class instead of django's standrd contrib.user app. I am wondering if it would be ...

1 2