-
Notifications
You must be signed in to change notification settings - Fork 6
Description
I followed all the instructions and didn't get any errors but when I do python manage.py runserver and go to localhost:8000 i get this error:
Template error:
In template /home/cat/virt-inplaceedit/local/lib/python2.7/site-packages/inplaceeditform_extra_fields/templates/inplaceeditform_extra_fields/adaptor_image_thumb/render_value.html, error at line 4
no such table: thumbnail_kvstore
1 : {% load inplace_edit thumbnail %}
2 :
3 : {% if size %}
_4 : {% thumbnail value size as thumb %}_
5 : <img src="{{ thumb.url }}" {% eval %}{% if title %}title="{{ title }}"{% endif %} {% if alt %}alt="{{ alt }}"{% endif %}{% endeval %} />
6 : {% endthumbnail %}
7 : {% else %}
8 : <img src="{{ value.url }}" {% eval %}{% if title %}title="{{ title }}"{% endif %} {% if alt %}alt="{{ alt }}"{% endif %}{% endeval %} />
9 : {% endif %}