having a problem installing my reusable app in my Django-polls project

I @anefta. Thanks for responding! The structure of the project is not the problem. I changed the naming of the app back to the original polls name. May only problem now is that my label is the same as my app name. This really should have been done differently right from the beginning. The original structure of:

  • django-polls/ # top level directory where everything resides
  • django_polls/ # name of project
  • templates/
  • manage.py
  • requirements.txt

Was a problem waiting to happen. And of course in the beginning, when I followed the app tutorial, I didn’t know that I was going to do advanced one until I found out about it. And then the name of the app is autogenerated based on what we give it. if we give it according to “convention” using django-* for the name, and django_* for the name of the app used in the project itself, it WILL cause an issue. They should change the iinitial naming of the app to fit the structure of the whole project taking into account the advanced tutorial! But thanks anyway!