Hi
Now I have the following project structure
mywebsiteroot/
-- myapp/
-- manage.py
-- myapp/
--templates/
--settings.py
--models.py
--views.py
When my base.html template includes a link "mylink" which shows some information.
On the home page this works fine. my django app receives a URL request for
example.com/mywebsite/mylink which I serve using base.html template.
Now I extend the base.html template elsewhere in another view mylink/<some_integer>.
So how do I code my url conf / view / template in order to be independent of mywebsite name.
Is there anything wrong with the way I am wiring up my application.
Thanks in Advance!