django-class-based-views are Django views that are represented as classes. These allow you to structure your views and reuse code by harnessing inheritance and mixins.
2
votes
0answers
31 views
Django: CBV method form_valid() not called
In my CreateView class I am overriding the form_valid() function as follows:
class ActionCreateView(CreateView):
model = Action
form_class = ActionCreateForm
success_url = ...
-1
votes
2answers
26 views
Using two parameters to delete using a Django DeleteView [closed]
I am trying to delete a report from a particular client, so currently in my url.py i am passing the client id and the report id, hoping to delete report Y from client X. I could have done this using ...
0
votes
1answer
26 views
Django: dynamic success_url results in “'NoneType' object has no attribute 'find'”
I would like to redirect the success_url to the same form after the form was submitted and valid. Online I found a description of a solution, however this solution and my other code option generate ...
0
votes
1answer
22 views
ManyToManyField in Class Based Generic Views and Save Override
We have a class-based-generic view that adds an object with a ManyToManyField relationship. We're trying
to modify some values on save() override for the relationships created on that ...
0
votes
1answer
30 views
Overriding get_queryset in Django UpdateView. Why is it asking for <pk> or <slug> when I am returning the right queryset?
Here is my view.
class ModelxUpdateView(LoginRequiredMixin, UpdateView):
model = Modelx
template_name='template.html'
form_class = ModelxFormSet
def get_queryset(self):
...
0
votes
1answer
27 views
Using Multiple ModelForms with Class-Based Views
I've got a situation where I'd like to add an additional modelform to my CreateView. We have an entry order system
that allows someone to add an order and then add items to that order. Typically, when ...
0
votes
0answers
30 views
Filling model with 2 foreign keys on Django
Good evening fellows and happy workers day. I have this task, that is, filling an intermediate model with two foreign keys from two other models.
Class A:
string_attr = models.CharField()
...
0
votes
2answers
22 views
django add user authentification check for class-based views
I have lots of class-based views in my app. Most of them should be accessible only by authentificated staff users. How can I easylly add user check for lot of class-based views?
For standart function ...
1
vote
1answer
39 views
Replace get_context_data with get_object in Django 1.5
I have a CreateView in which I need to output data from an object. It works fine with this code below
class MyCreateView(CreateView):
model = ModelName
def dispatch(self, request, *args, ...
0
votes
2answers
63 views
Send a file through Django Class Based Views
We use class based views for most of our project. We have run into an issue when we try and create a CSV Mixin that will allow the user to export the information from pretty much any page as a CSV ...
0
votes
1answer
21 views
Update multiple objects in Django 1.5 with formsets
How can I update multiple objects in Django 1.5 with formsets? I guess the url should be something like /4,7,8/update/ where 4, 7, and 8 are primary keys of the objects I want to update.
I guess ...
2
votes
1answer
37 views
django run another class-based view (CBV) in a CBV?
so I have a CBV (A), CBV (B), and a url like
regex=r'^(?P<slug>[-\w]+)/(?P<app>[-\w]+)'
I want to read in the slug and app parameters with (A) and then based on those, redirect it to an ...
0
votes
1answer
28 views
Django: hiding the primary key (pk) and using DetailView with get_queryset
Following up on this thread: django: How do I hash a URL from the database object's primary key?, I would like to hide primary keys from users and use Detailview in my urlconf. I was able to ...
0
votes
2answers
47 views
Django LoginFormMiddleware breaks with class based views
As per a few other SO answers, I'm using middleware to show a login form on every page of my project, such that a user can login in-place. I am aware some frown upon this, but it really does make for ...
0
votes
0answers
46 views
Derived django class based view and context data
I have a problem. I have at least three class- and one context-data titre who is the title of the page.
One generic class for form:
class Myformview(generic.FormView):
form_class = None
...
0
votes
2answers
40 views
Manually get response from class-based generic view
I'm trying to write a test that validates HTML returned from a generic class-based view. Let's say I have this function-based view that simply renders a template:
# views.py
from django.shortcuts ...
0
votes
2answers
116 views
django class based view get_context_data got an unexpected keyword arguement
I am trying to do a CRUD application from django class based views.
Here is my view to update/create a note.
class CreateNoteView(CreateView):
model = Note
template_name = 'edit_note.html'
...
0
votes
1answer
141 views
Getting __init__() got an unexpected keyword argument 'instance' with CreateView of Django
Some details:
Request Method: GET
Request URL: http://localhost:8080/user/create
Django Version: 1.5.1
Exception Type: TypeError
Exception Value: ____init____() got an unexpected keyword argument ...
0
votes
1answer
36 views
Why is this Django class-based year archive view not working?
I'm trying to subclass the YearArchiveView class-based view to show a list of articles published in a year, but the filtering doesn't work and example.com/2012 shows articles from all years.
Note ...
0
votes
1answer
50 views
Django CreateView modelform
I am new to Django CBV and I am trying to use it correctly.
I want to enable the user to create a quizz, the user choose a subject, a level and a subject and based and those choices I draw 10 ...
1
vote
1answer
32 views
Dynamic field names in Django Mixin
I have these class based ListView's which I would like to filter by date. I have a simple mixin
to display the filterform, which works great:
class MonthYearFormMixin(object):
def ...
0
votes
1answer
59 views
How to use search forms with django class-based-views
I need to implement a simple Search by manga name, but i always get a page not found saying no manga corresponding to query
urls.py
urlpatterns = patterns('',
...
0
votes
1answer
35 views
How to pass DetailView over the 'slug' in url?
How to pass DetailView over the 'slug' in url?
First, let's look at my code.
urls.py
from django.conf.urls import patterns, include, url
urlpatterns = patterns('',
...
0
votes
1answer
46 views
Is it OK to reuse Django URL patterns. If so, how?
I have an URL and a class based view hierarchy that needs to do exactly the same thing, but for various reasons they need to have separate dispatch() methods in one of the superclasses.
I.e a common ...
-1
votes
3answers
44 views
How to have same CBV class hierarchy in two URL prefixes with separate superclass dispatch() methods in Django
I have a (CBV) superclasses (inheriting from Django's View and a mixin) and multiple subclasses for that.
I need to have the exact same functionality implemented in all the subclasses, but the actual ...
0
votes
1answer
45 views
Using different permission decorators in the same class based view in django
I recently switched to class-based views in my Django app and want to use them as elegantly as possible. In the app, I have a comment system and, if permissions are matched, admins should be able to ...
0
votes
2answers
61 views
Function to Class Based View (DetailView) Django
So my function-base view currently looks like this, and I would like to change it to Class Based View
My Function View
def user_detail(request, username):
try:
user = ...
0
votes
1answer
133 views
URL-parameters and logic in Django class-based views (TemplateView)
It is unclear to me how it is best to access URL-parameters in class-based-views in Django 1.5.
Consider the following:
View:
from django.views.generic.base import TemplateView
class ...
1
vote
1answer
68 views
Django Dynamic Class Based Generic Views
We've got a lot, a lot of views that utilize simple generic views that we used to loop over in urls.py and point to the same function based generic view. Now that we're moving to class based generic ...
0
votes
1answer
49 views
Django class-based “method_splitter” - passing 2 slugs as model name and field value, respectively
I want to create a "method_splitter" equivalent using class-based views in order to remove some hard-coding in my URL confs.
I would like to have the following URL's:
ListView: ...
0
votes
1answer
115 views
Django: ListView with post() method?
I am trying to process two forms in a Django class based view. The site contains a form called form (based on GET) for narrowing the list results of the ListView and the second form status_form (based ...
1
vote
1answer
42 views
How to specify the name of the form variable used in the template of a FormView? (object_context_name for forms)
from forms import MyContactForm
from django.views.generic.edit import FormView
class MyFormView(FormView):
template_name = 'my_forms.html'
form_class = ...
0
votes
1answer
55 views
Django Class-Based Generic Views Register User
Good evening friends.
I'm trying to create an application for easy user registration. Using Django 1.5, my problem is the user is not saved in the database, my code here:
#forms.py
class ...
0
votes
1answer
93 views
Override get() in Django Class Based View to Filter
I'm starting a new app and I'm trying my best to embrace Class Based Views. Ahhh, growing pains. I'm trying to do a simple filter here from a GET variable, if it doesn't exist I want to return all ...
0
votes
3answers
62 views
Django: Can class-based views accept two forms at a time?
If I have two forms:
class ContactForm(forms.Form):
name = forms.CharField()
message = forms.CharField(widget=forms.Textarea)
class SocialForm(forms.Form):
name = forms.CharField()
...
1
vote
1answer
84 views
Django 1.5 Class Based Views with custom validation messages from the model
I'm writing a fairly simple bit of CRUD in my django application for project management. I've got the following set up (leaving out the various imports etc for brevity):
#models.py:
class ...
0
votes
1answer
78 views
How should template names be set dynamically using class based views?
I've searched through the ref and topics of the class based views Django documentation(Django 1.4) but I haven't found any mentioning of this. How do I set template names dynamically using class based ...
3
votes
1answer
44 views
How to restrict access to certain user to an UpdateView?
I have a schema like this:
models.py:
class Evento(models.Model):
[...]
user = ForeignKey(model=User)
forms.py:
class EventoForm(forms.ModelForm):
class Meta:
model = Evento
...
0
votes
4answers
166 views
django class based view returns empty string when POST
To demostrate:
from django.views.generic.base import View
from django.views.decorators.csrf import csrf_exempt
from django.utils.decorators import method_decorator
class TestView(View):
...
0
votes
1answer
44 views
Meta: Why are there no custom class based views?
It seems like such an obvious pattern that would be extremely useful, and help developers to conform to DRY. Eg, define a certain context that can be passed to each view. As far as I am aware, there ...
1
vote
4answers
101 views
How to use current logged in user as PK for Django DetailView?
When defining URL patterns, I am supposed to use a regular expression to acquire a PK from the URL.
What if I want a URL that has no PK, and if it's not provided, it will use the currently logged in ...
2
votes
1answer
61 views
Django: authenticate based on an object's properties using class-based views
Let's say my app is like a forum, but that each post has a group of people which may see it.
SecretPost(Model):
can_see = myapp.main.models.GroupOfUsers()
I want to write a view which restricts ...
0
votes
2answers
173 views
Django Call Class based view from another class based view
i am trying to call a class based view and i am able to do it, but for some reason i am not getting the context of the new class that i am calling
class ShowAppsView(LoginRequiredMixin, ...
0
votes
1answer
65 views
django: routing users through a complex app with class-based views
I'm an advanced beginner at django and python. I'm writing an app to handle registration and abstract submission for a conference, and I'm trying to use class-based views. Users get an emailed link ...
1
vote
2answers
69 views
How can I open two log files in one HTML page in Django?
I have my two log files in my django root dir called apache.error.log and django.log. In my app/static folder I have the HTML file mylog.html. Now I want to view those log files inside that HTML page.
...
1
vote
1answer
53 views
where to include business logic in listview Class methods
I am trying to understand Django's class based views (very new to it), especially, ListView. I am struggling to understand where the "business logic should go". Say for example, I have the following ...
1
vote
1answer
85 views
Django Class Based View: Validate object in dispatch
Is there a established way that i validate an object in the dispatch without making an extra database call when self.get_object() is called later in get/post?
Here is what i have so far (slightly ...
0
votes
1answer
30 views
Search form not working using class based view
I'm trying to create a search form but it's not working. Here are my codes:
class LocationSearchMixin(object):
def get_queryset(self):
q = self.request.GET.get('q')
if q is None:
...
0
votes
1answer
38 views
How to create validator on form fields in model forms
How to validate model field title? What if for example, every use of the title field started with the word ‘Blog’.
models.py
class TitleAbstract(models.Model):
title = ...
0
votes
0answers
72 views
Django: How to get yester query set in class-based views?
Django: How to get yester query set in class-based views?
http://ccbv.co.uk/projects/Django/1.4/django.views.generic.dates/TodayArchiveView/
I use TodayArchiveView.
BTW, if TodayArchiveView get ...