This seems like I must be missing something really simple. I'm trying to use the url command for a link. I keep getting a NoReverseMatch error. The code in the HTML looks like this:
a href="MyApp/Batch_Up_Load">Batch Upload</a
a href="{% url 'MyApp/Batch_Up_Load' %}">test</a
I'm just learning this so I duplicated the link, one in a button and one as an url. If I take out the second line the HTML loads find and the button takes me to the correct page. When I add the second line I get the NoReverseMatch error. I have it added to the installed apps in the settings page but I would think if I had done this wrong the first button wouldn't work at all.
If instead I link it to a name in the base module like this: test
it works fine. Is there some place special I need to list the MyApp application in order for python to find it when using url?