[Django]-ImportError: No module named remote

0👍

The issue was that I was attempting to overwrite the items tag, overwriting the dict items method.

In this scenario, it was looking for the items inside the dict, which is not what I was expecting.

0👍

You need to add 'teemo.tags' to INSTALLED_APPS in order for django to find your templatetags.

Edit

It also seems that you are missing: teemo/tags/__init__.py file.

👤lehins

Leave a comment