Questions about Django’s built-in generic views, which helps you to avoid repeating common code patterns in every project.
1
vote
0answers
22 views
UpdateView creates a new object instead of updating existing
I read the django-docs but still can't figure it out, what am I missing and doing wrong?
When I go to the url: url(r'^(?P<calendar_id>\d+)/edit-event/(?P<pk>\d+)/$', ...
0
votes
1answer
27 views
Specifying context object names of generic views
I'm having a hard time setting the context object names for django's generic class based views.
class FictiveCreateView(generic.CreateView):
context_object_name = 'fictive_form'
form_class = ...
1
vote
2answers
25 views
Django, switching views basing on the request
I want to display different thing at the same URL (home page) depending on whether a user is logged in or not.
So, if he is not authenticated I'll display a page which does not involve any DB query, ...
0
votes
1answer
17 views
Extended CreateView does not give the desired output in the template
I have two tables in my model.py:
class Partner(models.Model):
id = models.AutoField(primary_key=True)
name = models.CharField(max_length=255, blank=True)
class Meta:
db_table = ...
1
vote
1answer
30 views
how to redirect loggedin in users from viewing login page in django, using generic views
i want to prevent/redirect logged in users from viewing login or signup pages, i did that through views like this
def login(request):
if request.user.is_authenticated():
#redirect
...
0
votes
1answer
18 views
How does one use a custom widget with a generic UpdateView without having to redefine the entire form?
I have a model with a ManyToMany relation that I would like to update with a CheckBoxSelectMultiple widget while everything else uses the default generic form, but when I redefine that one form field, ...
0
votes
1answer
35 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
29 views
Update selected objects from ListView in Django
I have a ListView in which I list all objects in a table. Every row has a checkbox. I am trying to update the objects whose checkbox is marked with a formset in another view, but I don't know how to ...
0
votes
2answers
62 views
Django - Pass model name as parameter to generic view
Let's say I have some Models that inherit from a base class, Animal. I can use generic views and route Cat/12 to a detail view and Dod/10 to the same detail view with a different context.
But I would ...
0
votes
1answer
57 views
Django ListView pagination using Form
I'm trying to pass "form" as context, my code:
class BlogSearchView(ListView):
model = Blog
paginate_by = 20
template_name = "base/blog_search.html"
def get_queryset(self):
...
0
votes
2answers
52 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
0answers
119 views
Updating a model instance with foreign key through Django generic update view.
I have a django model called "classifieds" which as name suggests is a classified database.Each instance of classifeds will have multiple images attached to it. So created another model named ...
0
votes
1answer
107 views
Django Tutorial: error 'no module named polls' after applying generic views
Windows 7, 64bit
Python 2.7.3
Django 1.5
python manage.py runserver
I am following the tutorial as available at 'https://docs.djangoproject.com/en/1.5/intro/tutorial04/'
Everything was working ...
0
votes
1answer
105 views
Django: Delete checked items using generic DeleteView?
I have a table where I listing all my items with two columns(delete,URL name). In delete column there are check boxes for each item, and one check box for select all items.
How can I implement it ...
0
votes
1answer
220 views
Django 1.5: How to use generic views?
I am trying to use the Generic Views in Django 1.5 and its kind of confusing.
So far I have been using functions within views.py. I agree that the function approach has more boilerplate code, but at ...
2
votes
1answer
217 views
Django : Can I use CreateView and DeleteView in same form?
I want show two button in same form, first button I want use for delete object, and second button to create an object.
For example i want create simple Model like:
models.py:
class ...
3
votes
2answers
176 views
How does django's View class work
I'm diving into Django's generic views, figuring out how they return a simple HttpResponse object, like a simple view function would.
I have written a simple project for testing, and I added some ...
0
votes
1answer
107 views
Can I make a view using UpdateView and DeleteView together?
I am looking for some information about generic views in django.
I want a page that will render a form for an object. On my page I want one submit button to update the object and another submit ...
0
votes
0answers
89 views
Lookup and create User for Django foreign key
Django beginner here. I have a modal (UserGroup) that has a foreign key to both User and Groups. I created a formset with Groups and UserGroups.
Basically, I want to be able to create a group with a ...
0
votes
1answer
40 views
Error passing the username to a Generic DetailView - django 1.4.3
First of all, I have read this django username in url, instead of id it helped, but did not solve my problem. I do not want to write any code in views.py if I can help it.
Things I've tried under ...
1
vote
1answer
137 views
django: How to pass variable to class?
urls.py
url(r'^customer/(?P<name>[^\s]+)/$', customerDetailView.as_view(), name="customerDetailView"), #pass 'name' variable
and
views.py
class customerDetailView(DetailView):
...
0
votes
0answers
79 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 ...
0
votes
1answer
67 views
redundant django code
I have some code that I wrote and it works perfectly fine for its purpose.
from django.shortcuts import get_object_or_404
from django.views.generic import ListView
from cab.models import Language
...
0
votes
1answer
106 views
Django: How to call class-based generic views in views.py?
I want to call class-based generic views in views.py
Please see my code...
urls.py
from django.conf.urls import patterns, include, url
from crm.views import *
urlpatterns = patterns('',
...
0
votes
1answer
52 views
How to pass form to Class-based generic views(TodayArchiveView)?
url.py
from django.conf.urls import patterns, include, url
import os.path
from crm.views import *
urlpatterns += patterns('',
(r'^test/$', tView.as_view()),
)
views.py
from ...
0
votes
1answer
57 views
Why I get a this error that invalid syntax (urls.py, line 34)
my url.py
from django.conf.urls import patterns, include, url
import os.path
from crm.views import *
(r'^workDailyRecord/(?P<mode_name>\w+/)?$', workDailyRecord),
(r'^user/search/$', ...
0
votes
1answer
106 views
Django: Category List - view's
I have model in models.py:
class Category(models.Model):
name = models.CharField('Nazwa Kategorii', max_length=100)
slug = models.SlugField('Odnośnik', unique=True, max_length=100)
icon = ...
0
votes
1answer
88 views
Django Forms for generic relationships. How to include them?
I have a Phone model that is being constantly used by many different models as a generic relationship. I have no idea how to include it in the Create/Update forms for those models… how good or bad of ...
0
votes
1answer
42 views
Omit day keyword argument from Django's date_based generic view?
I don't want to have the day in the URL for a detail view while using Django's dated_based generic views. I tried the following but get a TypeError at /logbook/2013/january/testing/ object_detail() ...
0
votes
1answer
40 views
Compound generic view in Django?
I'm working on my first Django project. I need to display a compound page containing both sides of a one-to-many database relationship. Trying to be as Django-y as possible, I considered (class based) ...
0
votes
1answer
48 views
How, in django, set field of the model in view using generic views?
I have a model, which has an author ForeignKey, as such:
class Appointment(models.Model):
# ...
author = models.ForeignKey(User)
I want the author field to be set automatically when ...
1
vote
1answer
44 views
Records Not showing in template
I am running this with Python 2.7.2 and Django 1.4.1 on Windows 7.
I have several records in the sqlite db and I am trying to get them displayed using generic class views ListView. I have eliminated ...
1
vote
1answer
51 views
Can not understand Django and mixin behaviour
I have the following hierarchy of classes:
class ProfileUpdateView( UpdateView, LoggerMixin ):
def get_context_data(self, **kwargs):
context = super(ProfileCreateView, ...
0
votes
1answer
195 views
Convert django function generic view into class-based generic view
I've added a "user" field to all of my models. When a user creates an object, I want to attach their ID through a foreign key
user = models.ForeignKey(User)
Previously, I was using create_object ...
1
vote
2answers
304 views
How do I set initial data on a Django class based generic createview with request data
I used Django's generic createview for my model
from myproject.app.forms import PersonForm
class PersonMixin(object):
model = Person
form_class = PersontForm
class ...
1
vote
2answers
105 views
Generic Views NoReverseMatch when using {% url %} in Django
I have a problem to do the reverse command 'url' from the template base.html.
URLS.conf my file looks like this:
dic_info_artigo = {
'queryset': Artigo.modificado.all(),
...
0
votes
0answers
76 views
Use Django-sorting with generic list views directly in the URL dispatcher
I've successfully installed Django-sorting and was wondering if I can get the process to work with generic views in the URL dispatcher.
I have the following in my urls.py file:
...
1
vote
2answers
251 views
django-generic-views + list index out of range exception when updating object with inline formset
Thank you guys for your replies. I am still getting the same exception though I changed the code to the following:
class ProjectUpdateView(UpdateView):
form_class = ProjectForm
template_name = ...
1
vote
2answers
333 views
Access to RequestContext in Django template?
I don't seem to have access to the request object in my django templates.
Here's part of my settings.py file:
import django.conf.global_settings as DEFAULT_SETTINGS
TEMPLATE_CONTEXT_PROCESSOR = ...
2
votes
2answers
2k views
Django Tutorial: Generic Views. Attribute Error
I'm at the last part of this tutorial.
from django.conf.urls import patterns, include, url
from django.views.generic import DetailView, ListView
from polls.models import Poll
urlpatterns = ...
0
votes
1answer
1k views
Django registration: Redirect after login
I am using django registration and I want to be redirected on an other page after login.
I used in settings.py:
LOGIN_REDIRECT_URL = 'http://127.0.0.1:8000/home/'
That's the page I want to be ...
0
votes
2answers
115 views
direct_to_template and render_to_response on templates - {{request}}
These functions should not work exactly the same?
def IndexView(request):
return direct_to_template(request, template='index.html')
def IndexView2(request):
return ...
0
votes
0answers
239 views
Django - Passing user to inline formset
I'm a little lost here, but here is the situation. I know theres a lot of code but bear with me. I have two models: Album and Image. Image has a ForeignKey to Album. In the form that the User sees I ...
1
vote
1answer
478 views
Django: best way to add filtering (and sorting) to (generic) class based ListView?
Let's say I have a model like this:
class Car(models.Model):
BRANDS = (
('FRD', 'Ford'),
('MCD', 'Mercedes'),
...
)
brand = models.CharField(max_length=3, ...
0
votes
0answers
170 views
Django UpdateView with inherited models
I'm trying to use Django's generic UpdateViews with ModelForms, however I'd the model I'm using is an inherited model.
If I extend the UpdateView class when the model and form are bound to the ...
0
votes
1answer
58 views
Django travel up or down relationships in a generic way
I am trying to rewrite my Django code to make it as generic as possible on all levels. Say I have the following models:
class Tvshow(models.Model):
pass
class Season(models.Model):
tvshow = ...
8
votes
4answers
2k views
Django class-based view: How do I pass additional parameters to the as_view method?
I have a custom class-based view
# myapp/views.py
from django.views.generic import *
class MyView(DetailView):
template_name = 'detail.html'
model = MyModel
def get_object(self, ...
0
votes
0answers
63 views
Newbie with Django, some misunderstanding concepts with views and templates
Well, i'm working with Django a few days ago, even i post these days some questions about that matters that are coming to my mind as i developed this site, i'm working in a started project, so most of ...
2
votes
1answer
581 views
Django - queryset vs model in Generic View
I'm pretty new at Django and wondering what is the difference between defining model vs queryset in a generic view like ListView. Here's my code example in my urls.py file for the project:
...
2
votes
2answers
451 views
django ModelForm without all fields - fill them automatically
I'd like to fill one field of my model automatically. It holds a client IP.
I've defined an CreateView as follows:
class MyView(CreateView):
def post(self, request, *args, **kwargs):
...

