Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
4answers
2k views

What is the advantage of Class-Based views?

I read today that Django 1.3 alpha is shipping, and the most touted new feature is the introduction of class-based views. I've read the relevant documentation, but I find difficult to see the big ...
12
votes
4answers
2k views

django class-based views with inline model-form or formset

I have the following models: class Bill(models.Model): date = models.DateTimeField(_("Date of bill"),null=True,blank=True) class Item(models.Model): name = ...
9
votes
4answers
948 views

Django Class Based View Composite

I'm using Django 1.3's Class-base generic views for a project. They're really nice but I would like to be DRYer. I have a page that displays a list of press coverage we've received and another which ...
7
votes
3answers
1k 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 ...
5
votes
2answers
552 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, ...
4
votes
1answer
308 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
84 views

Ajax and ModelForm to Update a model

I'm trying to make updates to a model using Ajax/POST. I'd like to be able to just send the field being updated and not all fields in the Form. But this seems to cause the form to be invalid. Is there ...
3
votes
2answers
54 views

How do I paginate WeekArchiveView?

In continuation of my struggle with WeekArchiveView, how do I paginate it by week? All I want is: to know if there is next / previous week available; in case there is, provide a link in the ...
3
votes
1answer
254 views

Django 1.3 CreateView, ModelForm and filtering fields by request.user

I am trying to filter a field on a ModelForm. I am subclassing the generic CreateView for my view. I found many references to my problem on the web, but the solutions do not seem to work (for me at ...
3
votes
1answer
424 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
2answers
785 views

Django - Class Based Generic View - “No URL to redirect to”

I'm using the generic CreateView like: #urls.py from django.conf.urls.defaults import * from django.views.generic import CreateView from content.models import myModel urlpatterns = ...
3
votes
1answer
1k views

How to do a DetailView in django 1.3?

I'm currently learning how to use the class-based views in django 1.3. I'm trying to update an application to use them, but I still don't uderstand very well how they work (and I read the entire ...
3
votes
2answers
621 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
127 views

How to process a form (via get or post) using class-based views?

Im trying to learn class-based views, for a detail or list view is not that complicated. I have a search form and I just want to see if I send a query to show up the results. Here is the function ...
2
votes
2answers
155 views

Django Paginate by Year

I was able to preview the 100 most recent items in my news clipping database on my website's index page with a generic view: DPRM Now I need to paginate my database in a separate logical section of ...
2
votes
1answer
278 views

Django apps using class-based views and ajax?

I'm learning Django and I found class-based views and I wonder how to implement Ajax on those views. I searched github for a django project and I found some using class-based views but not ajax. ...
2
votes
1answer
50 views

Monday as first day of week for WeekArchiveView

How do I convince WeekArchiveView that Monday is the first day of week?
2
votes
1answer
45 views

How do I display most recent week items by default with WeekArchiveView?

I'm astonished by how little documentation on class-based generic views there is. Anything slightly more complex than a trivial sample has to get done through guesswork, trial and error. I want to ...
2
votes
1answer
1k views

Updating User model in Django with class based UpdateView

I am trying to update the Django User model with the class based UpdateView that automatically renders with the current user but am getting an error that a pk or slug is required. The form work and ...
2
votes
2answers
242 views

Django class-based views YearArchiveView

I'm trying out Django's class-based views, and liking them so far, but I can't get the YearArchiveView to give me anything. Here's my class: class ThoughtsByYearView(YearArchiveView): ...
2
votes
1answer
159 views

Feincms mixing content types

I have a question and i want to know if i can mix 2 existing contenTypes together into one custom contenType. I need my own content type with contenType RichTextContent and ImageContent so that i can ...
1
vote
1answer
61 views

What is a good way to write a django class-based view that both shows a date-based object and a form?

What is the best way to write a class based view that both shows a date-based object and a form? The use case is a site index page view that both displays today's object and has a contact form. At ...
1
vote
1answer
58 views

Validating a form in a get request, how?

in my way of perfectionism, I'm here to ask more questions about the not-so-well-documented class-based views. I spend like 5 hours learning about class-based views, lurking into the code and I got a ...
1
vote
1answer
112 views

reverse urls for Django class based view

I'm trying to do something like: in urls.py: ... url(r'^(?P<pk>\d+)/$', VideoDetailView.as_view(), name='video_detail', kwargs={'foo:''}) ... in views.py .. ...
1
vote
1answer
69 views

link to a class based view

I just started learning python and django and I have a question. I got the assignment to turn function views into class based views. But my links wont work now. these are from urls.py: url(r'^$', ...
1
vote
1answer
174 views

How do you use get_context_data with TemplateView in Django

I'm trying to do something like this: class AboutView(TemplateView): template_name = 'about.html' def get_context_data(self, **kwargs): context = super(AboutView, ...
1
vote
2answers
127 views

How to add parameters to Django class based generic view decorators?

I have written a decorator to display success message on object creation: from django.contrib import messages def success_message(klass): def form_valid(self, form): response = ...
1
vote
1answer
160 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
2answers
139 views

Using class based views to process information?

I've been experimenting with Django's Class Based Views and am trying to write a simple class based view that processes certain information in request so that the processed information can be used by ...
1
vote
1answer
67 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
2answers
366 views

Overriding get_queryset() in a Django DetailView

I have two models, City and State with State being a ForeignKey relation of City.My CityDetailView url is constructed as: r'^state/(?P<state>[-\w]+)/city/(?P<slug>[-\w]+)/$' My ...
1
vote
0answers
455 views

Django class-base generic view to create or update [closed]

I already know how to use one of the class-based generic views CreateView, UpdateView and FormView, but I can't figure out how to write something clean in order to create or update an object. Can ...
1
vote
1answer
398 views

Registration/authorization form with class-based generic views in django

Could someone please help with reg/auth/auth using class-based generic views? It is clear how to do this with function-based views, but not with classes. Cannot understand the philosophy of CBV when ...
1
vote
2answers
376 views

Sending request.user object to ModelForm from class based generic view in Django

So, my goal is to be able to filter a ModelChoiceField queryset in my ModelForm to only include Places that request.user has created. My ModelForm is simply: class PlaceEventForm(models.ModelForm): ...
0
votes
2answers
34 views

Django - Filtering in DetailView

I had a function based view that looked like this: def account_details(request, acc_id): account = get_object_or_404(Account, pk=acc_id, person__user=request.user) # ... Which shows you ...
0
votes
2answers
40 views

django 1.3 url template tag and class-based views

I'm just starting to migrate an app I have to 1.3 from 1.1. I'm starting to get in the thick of class based views and am blown away, but not really in a good way. I have some gripes but the specific ...
0
votes
1answer
20 views

Create a view to a subdirectory of templates in Django

I'd like to create a TemplateView that displays all templates under a specific directory. So for example I have /staticpages/about-me.html /staticpages/about-you.html /staticpages/about-us.html ...
0
votes
1answer
66 views

Converting a function based view to a class based view with only a form and no model (object)

Right now, this is how the password is changed within a user profile. What is the best way of converting this to a class based view knowing that there is no model involved? This is the view for ...
0
votes
2answers
57 views

CreateView is throwing “DoesNotExist” when instance isn't provided to form

I'm getting a "DoesNotExist" error with the following set up - I've been trying to debug for a while and just can't figure it out. class Video(models.Model): name = ...
0
votes
1answer
46 views

How do I add the request.slug to a generic class view?

I'm having a hard time wrapping my head around this. I have a view that getts all my projects by a slug that is the tag. When I show the template, I want to include that tag in my template so that I ...
0
votes
0answers
135 views

Dynamic queryset using request.POST data in class-based generic views

I'm interested in how to make dynamic queryset using request.POST query dict? When I did that: class ListCv(ListView): queryset = CV.objects.all() template_name = ...
0
votes
1answer
68 views

Using Django's class based views to create a list of multiple objects

What's the correct way to extend django's class based views to display a page with a series of list objects. Does it make sense to create a ListView class for one of the objects and then pass the ...
0
votes
1answer
65 views

How do you have a dynamic template name using class based generic views in django?

I'm trying to emulate this with djangos new class based generic views and can't figure it out: urlpatterns = pattern('', (r'^about/(\w+)/$', about_pages), ) def about_pages(request, page): ...
0
votes
2answers
102 views

Special handling of multiple urls to one view with class based generic views

I am converting a WordPress site to a django one. I need to preserve the url structure for old posts, but have a different structure for new posts. I've done this by creating the 2 urls, setting a ...
0
votes
1answer
78 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 ...
0
votes
1answer
65 views

Can I combine Create and List class based generic views using mixins?

I'm looking for the easiest way to combine List and Create functionally with generic class views. I want to have a page that has an item list and a form to add a new item on the bottom. I thought ...
0
votes
1answer
98 views

Replacement for num_latest with class-based date-based generic views?

I've switched to Django 1.3 in order to get pagination for my date based generic views. This works fine, however there is a page where I want a specific number of items but do not want it paginated. ...
0
votes
1answer
88 views

select_related() in generic class-based views

I'm just getting started with the new(ish) class-based views, and I am wondering what's the best way to get select_related() in there. Here's my view: class PostDetailView(DetailView): model = ...
0
votes
2answers
195 views

How do I override `as_view` in class-based views in Django?

I'm trying to introduce class-based views in my project. Looked good so far, until I found the following problem. I'm using django-navigation to create breadcrumbs. It works like this: a view ...
0
votes
1answer
110 views

Filter Objects in a Django Formset

I am using inlineformset_factory to generate a formset as so: FormSet = inlineformset_factory(Model1, Model2, extra=0) if request.method =="POST": formset = FormSet(request.POST, ...

1 2