I am playing around with Google Course Builder. It's built using Google App Engine and the webapp2 framework.
I am not very familiar with webapp2 and routing in general and I think that's the reason for my doubt. And perhaps the people who have previously worked on GCB would be able to answer this question.
I am editing a view (as in MVC). It's an HTML file. I created a hyperlink to an another view (which is an HTML file I created myself), but I am getting a 404 when I click on the link.
I tried out all possible variations to the file location.
href="views/doubts.html"
would open "localhost:8080/views/doubts.html". But it gives me a 404 even thought he file exists. I tried out all variations ("/views/doubts", just "doubts.html", "doubts" and so on).
Perhaps direct access to the views might be blocked by some other part of the application. In such a case, what is the preferred way to go about it? Do I have to create a controller which redirects or so? I have never used MVC before.