Re: Class based view without rendering form

2017-05-29 Thread Fred Stluka
Shivendra, If you want to have an effect at the server without leaving the current page, you'll find that Django itself does not do that. Instead, you'll have to do one of: - Use _javascript_ in the page to make an Ajax or WebSockets    call to the server

Class based view without rendering form

2017-05-29 Thread shivendra bind
Hi, I recently started learning Django. Please help me with following problem. Background: I am using Python 3.5 and Django 1.11.1. I have 2 model class, Album and Song. A song always references to an album. I am using class based views to perform CRUD operations. Problem: how to update