[Answered ]-How to render specific template if two app have same template name?

1👍

The general recommendation is to use a folder structure like app1/templates/app1/ in order to avoid such kind of collisions. Same for static files.

See also docs.djangoproject.com/en/4.0/intro/tutorial03 and search for "template namespacing"

Leave a comment