Re: URL Concatenation Issue

2018-06-01 Thread Melvyn Sopacua
On vrijdag 1 juni 2018 00:14:32 CEST John Regis, Jr. wrote: > I have *href="about/"*. Also tried *href="./about/"* and same result. Please revisit this section in the tutorial[1]. If you haven't done the tutorial at all, please do it before trying a project on your own. You are missing a few

Re: URL Concatenation Issue

2018-05-31 Thread John Regis, Jr.
In blog/urls.py I have my my homepage mapped to my view.index. Are you saying to also map view.about as well? Also, when you say namespace are you saying to create a dictionary and include my index (blog) and about pages as values? New to Python so I'm trying to still wrap my head around the

Re: URL Concatenation Issue

2018-05-31 Thread John Regis, Jr.
I have *href="about/"*. Also tried *href="./about/"* and same result. On Wed, May 30, 2018 at 10:23 PM, Spence Patrick wrote: > Is your link tag href="./about" or href="/about/" > > On Wed, May 30, 2018, 19:14 wrote: > >> Hello, >> >> I'm debugging an issue that I'm having with my URL

Re: URL Concatenation Issue

2018-05-30 Thread Aditya Singh
For this you have provide an app inside your urls and refer to it as home:about where home is the app name and about is the page to be rendered. Also provide namespace in the urls so that the url is linked to the app name. Kind Regards, Aditya On Thu, May 31, 2018, 7:54 AM Spence Patrick wrote:

Re: URL Concatenation Issue

2018-05-30 Thread Spence Patrick
Is your link tag href="./about" or href="/about/" On Wed, May 30, 2018, 19:14 wrote: > Hello, > > I'm debugging an issue that I'm having with my URL patterns. In my HTML I > have an "about me" page that is linking to an about.html file in my > templates/blog/ directory. When I load the homepage

URL Concatenation Issue

2018-05-30 Thread johnregis021
Hello, I'm debugging an issue that I'm having with my URL patterns. In my HTML I have an "about me" page that is linking to an about.html file in my templates/blog/ directory. When I load the homepage and click on the "about me" link than "domain.com/about/" loads, which matches the URL