I want to check to see if row in the database already contains a particular input. If it does already exist, prevent it from being added again, if not then add it like normal.
You can use
Entry.objects.filter(name='name', title='title').exists()
This will return to you true/false values. When you use count the orm generates query which will be executed much longer than in exists method. The get method will raise an exception when object does not exists.
request.POST is a dictionary so to check db with it you use, i.e.:
Entry.objects.filter(name=request.POST['name'], title=request.POST['title']).exists()