0

I am using Django Rest Framework in my project. I did pip install djangorestFramework.

Currently the template that is rendered is default ones that is shipped with djangorestFramework. I want to look into the template code so that I can override and customize to my needs.

It is specified in the documentation on how to override certain features/themes. But I want to change almost everything. so it would be great if I could have access to those templates to help build mine.

On a related note, how to find the templates directories of django-apps installed.

eagertoLearn
  • 9,772
  • 23
  • 80
  • 122

1 Answers1

0

Maybe you could use django-debug-toolbar, you will have a template tab for every page where you can find all the used templates to build the page and for every template the absolute path is given.

sveetch
  • 11
  • 2