Re: href not working

2018-05-31 Thread Melvyn Sopacua
On donderdag 31 mei 2018 15:49:28 CEST Caleb Bryson wrote: > my blog view.py is empty at the moment > > > Mysite url.py > > from django.contrib import admin > > from django.conf.urls import url, include > > > > urlpatterns = [ > > url(r'^admin/', admin.site.urls), > > url(r'^', inc

Re: href not working

2018-05-31 Thread Caleb Bryson
my blog view.py is empty at the moment Mysite url.py from django.contrib import admin from django.conf.urls import url, include urlpatterns = [ url(r'^admin/', admin.site.urls), url(r'^', include( 'hybridair.urls')), url(r'^blog/$', include( 'blog.urls')), ] Hybr

Re: href not working

2018-05-31 Thread Caleb Bryson
my blog view.py is empty at the moment Mysite url.py from django.contrib import admin from django.conf.urls import url, include urlpatterns = [ url(r'^admin/', admin.site.urls), url(r'^', include( 'hybridair.urls')), url(r'^blog/$', include( 'blog.urls')), ] Hybr

Re: href not working

2018-05-31 Thread Caleb Bryson
my blog view.py is empty at the moment Mysite url.py from django.contrib import admin from django.conf.urls import url, include urlpatterns = [ url(r'^admin/', admin.site.urls), url(r'^', include( 'hybridair.urls')), url(r'^blog/$', include( 'blog.urls')), ] Hybr

Re: href not working

2018-05-31 Thread Melvyn Sopacua
On donderdag 31 mei 2018 05:56:59 CEST Caleb Bryson wrote: > So i am trying to create a directory with a Home,Blog,and Contact > selection. But every time i click on one of them they all go back to the > home page. If the url in your addressbar is /blog/ after clickin on it, but you see the home

Re: href not working

2018-05-31 Thread Mohammed Noor
I think the mistake is using a '/' before the name inside href. Try changing it from href= '/contact'/ to href= 'contact/' Have a great day > On 31-May-2018, at 9:26 AM, Caleb Bryson wrote: > > So i am trying to create a directory with a Home,Blog,and Contact selection. > But every time i c

Re: href not working

2018-05-31 Thread Mike Dewhirst
On 31/05/2018 1:56 PM, Caleb Bryson wrote: So i am trying to create a directory with a Home,Blog,and Contact selection. But every time i click on one of them they all go back to the home page. It feels like your urls.py is insufficiently fleshed out or maybe your home page url isn't fully for

href not working

2018-05-30 Thread Caleb Bryson
So i am trying to create a directory with a Home,Blog,and Contact selection. But every time i click on one of them they all go back to the home page. How do i fix this, and here is the secton of code below. let me know if you need to see more Home Blog Contact