It is possible. Import your Model to the view-File.
Example:
def editUser(request):
users = "YourModel".objects.all()
if request.method="POST":
selected_Item = request.POST['user.id']
userID = Employee.objects.get(id=selected_item)
userID.delete()
context = {
'user' : users
}
return render(request, "your_template_name", context)
So you select your Item by your ID or name. In your Templates you can say "user.your_stuff". So if your Model has things like name you can write user.name.
Then delete the stuff.
Context hier is like a Dictonary. You can work with it in your Template.
<form method="POST" > {%csrf_token%}
<select name="user.id">
{% for entry in user %}
<option> {{ entry.id }} </option>
{% endfor %}
</select>
<input type = "submit" value="Submit">
</form>
So now you have a DropDown Menu that lists all Entrys from user.
You can edit your return in your View so just call the same page and you just "refreshed" the Site and the value you want to delete is away.
Im sorry for my bad english or for my bad explanation. Im still improving my English Skills and im new too StackOverflow and Django too :P
If you have any Questions left, im here to help! :)