Perhaps you are better off not using a form to achieve this, as there are (from what you described) no form elements are required.
Instead, you might have a setting in which your urls.py has 2 URLs,
url(r'^app/edit/(?P<id>.*)$', edit_view, name='item_edit'),
url(r'^app/remove/(?P<id>.*)$', remove_view, name='item_remove'),
, {% url%} . , , "" , :
<table>
{% for item in items %}
<tr>
<td>{{item.name}}</td>
<td>{% url 'item_edit' item.id %}</td>
<td>{% url 'item_remove' item.id %}</td>
</tr>
{% endfor %}
</table>
... - ...