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')),
]
Hybrid Air url.py
from django.conf.urls import url, include
from . import views
urlpatterns = [
url(r'^', views.index, name='index'),
url(r'^contact/', views.contact, name='contact'),
]
Hybrid Air view.py
from django.shortcuts import render
def index(request):
return render(request, 'hybridair/home.html')
def contact(request):
return render(request, 'hybridair/basic.html' ('content' ['contact the team at', 'marcus@flymat21.com']))
def blog(request):
return render(request, 'hybridair/header.html')
blog url.py
from django.conf.urls import url, include
from django.views.generic import ListView, DetailView
from blog.models import Post
urlpatterns = [
url(r'^$', ListView.as_view(
queryset=Post.objects.order_by('-date')[:25],
template_name="blog/blog.html")),
url(r'^(?P<pk>\d+)$', DetailView.as_view(model = Post,
template_name='blog/post.html')),
]
On Thursday, May 31, 2018 at 9:01:23 AM UTC-4, Melvyn Sopacua wrote:
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
homepage content, then your homepage url pattern matches too much.
If you get redirected to the homepage, then there's something wrong in your
blog view code.
Given that it applies to both contact and blog, the first option is more
likely, but you could be making the same mistake in both views.
--
Melvyn Sopacua
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/2ed614e4-cb26-47ef-9bfb-4e07d10b5ef2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment