views:

18

answers:

1

Hello, I'm a Django newbie and am interesting in understanding how to install the EmailAuth app into my new project:

http://github.com/redvasily/django-emailauth

Seems like Django apps are meant to be plug in play so I must be missing something....

Here's what I tried. I created a new project copied the emailauth directory over Updated my settings.py with the INSTALLED_APPS 'emailauth' and made sure my settings.py had correct db and email settings.

But that failed, I must be missing some other installation requirements?

Thanks for any help you can provide.

A: 

Django apps are Python modules.

Ignacio Vazquez-Abrams
Thanks. I was able to install the app/module. The problem is now that app is hidden from my project folder and I want to be able to customize the templates, login, registration screens etc. How does Django support that?
AnApprentice