8 lines
208 B
Python
8 lines
208 B
Python
import os
|
|
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
TEMPLATES = [
|
|
{
|
|
'DIRS': [os.path.join(BASE_DIR, 'photo21/accounts/templates')],
|
|
'APP_DIRS': True,
|
|
},
|
|
]
|