I'm creating a view from my Django app that's suppose to call a template in my app directory called rooms. My app's name is room. When I write the code
return render(request, 'base\room.html', context)
I get an error at \r and the page doesn't load. Mind you, changing the template name to anything other than it starting without an r works fine. So, 'base\loom.html' works. Any idea why this is so? I only started noticing this recently