I need some advice about generic views and template in Django. I am trying 
to figure out how it's works. 

I want implement one page where I would like to display two generic view as 
CreateView and DeleteView. 

For example:

*models.py*

class model(models.Model):
      name = models.CharFields(u'Name', max_length=30, null= True, unique= True)

How can I make one form for create object, and in same template below 
create form render table with all exist objects and use checkbox column 
like option for delete object.

Both of forms should consists button for submit action (Delete, Add)

Tnx 

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at http://groups.google.com/group/django-developers?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to