Can I simulate form like behaviour when a user clicks on a simple link?
For example, can I have in views.py
def remove(request, entity_id):
#remove the object with entity_id here
And in the HTML
<a href="profile/remove/{{ obj.entity_id }}">
And in the urls.py
(r'^app/profile/remove/(?P<entity_id>\d+)', 'app.views.remove')
Or do I have to use a proper HTML form like in the tutorial?