EcoleNumeriqueVivant / Shamengo

0 stars 0 forks source link

initialiser dossier static et templates #3

Closed Hubertmaie closed 6 years ago

Hubertmaie commented 6 years ago

Hello,

Dans un tutoriel on nous fait mettre dans settings.py tout a la fin : STATIC_ROOT = os.path.join(BASE_DIR, 'static') et je crois que c'est tout, rien sur le dossier template. Alors que dans un autre site j'ai trouve qu'il fallait mettre :

Au debut : BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(file))) TEMPLATE_DIR = os.path.join(BASE_DIR, "templates") STATIC_DIR = os.path.join(BASE_DIR, "static") + a la fin : STATIC_URL = '/static/' STATICFILES_DIRS = [ STATIC_DIR, ] + et specifier 'DIRS': [TEMPLATE_DIR,], dans TEMPLATE = ...

Moins de lignes sur la premiere methode. Ca semble mieux. Mais y a-t-il une difference ? Dans la 2eme methode peut etre que l'on peut changer les noms de repertoires ? Merci !