I want to show two buttons in the same form, the first button that I want to use for the delete object, and the second button to create the object.
For example, I want to create a simple model, for example:
models.py:
class UrlStatus_Proxy(models.Model): urls = models.URLField(u'Site URL', max_length=100, null=True, unique=True) status_url = models.CharField(u'Site', max_length=20, choices=STATUS_URL)
urls.py
url(r'^url_status/$',ProxyUrlCreateView.as_view(model=UrlStatus_Proxy, get_success_url=lambda: reverse('proxy_url_status'),template_name='proxy_url_status.html'), name='proxy_url_status'),
proxy_url_status.html
<form action="" method="post"> {{form.as_p}} <input type="submit" name="delete" id="delete"> <input type="submit" name="add" id="add"> </form>
If I do not have objects in the database, do nothing, the form from the model is simply displayed, and you have only one option for adding a new object to the database.
If I have objects in the database, then list the object as a table, and in the table I have one field field. When I checked one of the objects and clicked the delete button, I want to delete this object.
In the second case, if I fill in the input field from the object and click the "add" button, I want to add the object to the database.
How can i do this?