[Django]-Django – extend template from parent directory

7👍

You should set template dir (https://docs.djangoproject.com/en/dev/ref/settings/#template-dirs) in settings.py and then use {% extends 'dir/base.html' %}.

Leave a comment