I'm trying to integrate Django's comment app into my site but with no success. I've been following the documentation outlined at: Django comments
The error I'm getting is:
Caught ViewDoesNotExist while rendering: Tried search in module FrontEnd.views. Error was: 'module' object has no attribute 'search'
nothing in my views refers to anything involving search. Something in the comments install is causing this. The line that actually fails is.
<form action="{% comment_form_target %}" method="post">
comment_form_target is highlighted.
The code causing the error:
{% load comments %}
{% get_comment_form for article as form %}
<form action="{% comment_form_target %}" method="post">
{{ form }}
</form>
From what I've found online, it looks like i'm either missing some library in my Python 2.7 or i'm doing circular imports?