Re: urls not maching

2014-07-14 Thread ngangsia akumbo
Thanks guys i actually solved my problem using class based views To be honest that was all the information i had , i did not hide any information. Thanks Guys -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and

Re: urls not maching

2014-07-14 Thread Daniel Roseman
On Monday, 14 July 2014 02:08:24 UTC+1, ngangsia akumbo wrote: > > > Those are actual urls , i am actually still developing this site, so i > decided to start with a blog first > You *have* to help us help you. Thomas specifically requested that you show *exactly* what URL you are requesting. Yo

Re: urls not maching

2014-07-13 Thread ngangsia akumbo
Those are actual urls , i am actually still developing this site, so i decided to start with a blog first -- 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 djang

Re: urls not maching

2014-07-13 Thread Thomas Lockhart
On 7/13/14 7:19 AM, ngangsia akumbo wrote: no am not using two slashes, i just want my block links to output the content details but i keep having the error above i need some help here You are getting some help here. The details you have provided so far seem to indicate that you are providing a

Re: urls not maching

2014-07-13 Thread ngangsia akumbo
can someone help me with a url that will work? -- 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+unsubscr...@googlegroups.com. To post to this group,

Re: urls not maching

2014-07-13 Thread ngangsia akumbo
no am not using two slashes, i just want my block links to output the content details but i keep having the error above i need some help here On Sunday, July 13, 2014 12:52:20 PM UTC+1, Jonathan Querubina wrote: > > It seems tha you are using blog// (two slashes) on the url. Try blog/ > > > --

Re: urls not maching

2014-07-13 Thread Jonathan Querubina
It seems tha you are using blog// (two slashes) on the url. Try blog/ Sent from my iPhone > On Jul 13, 2014, at 6:52, ngangsia akumbo wrote: > > > > Here is the similar probe > > views File > # Create your views here. > from blog.models import Post > from django.shortcuts import render_to_re

Re: urls not maching

2014-07-13 Thread ngangsia akumbo
Here is the similar probe *views File* *# Create your views here.from blog.models import Postfrom django.shortcuts import render_to_responsefrom django.template import RequestContextdef news_index(request):posts = Post.objects.all().order_by('published_date')context =

Re: urls not maching

2014-07-12 Thread Tom Evans
On Sat, Jul 12, 2014 at 9:01 AM, ngangsia akumbo wrote: > i have a problem with my urls it keeps breaking > > here is my url > from django.conf.urls import patterns, include, url > from django.contrib import admin > admin.autodiscover() > #from blogs import views > > urlpatterns = patterns('blogs.

Re: urls not maching

2014-07-12 Thread Lachlan Musicman
show slug on the model? how is it defined? On 12 July 2014 18:01, ngangsia akumbo wrote: > i have a problem with my urls it keeps breaking > > here is my url > from django.conf.urls import patterns, include, url > from django.contrib import admin > admin.autodiscover() > #from blogs import views

urls not maching

2014-07-12 Thread ngangsia akumbo
i have a problem with my urls it keeps breaking here is my url *from django.conf.urls import patterns, include, urlfrom django.contrib import adminadmin.autodiscover()#from blogs import viewsurlpatterns = patterns('blogs.views',url(r'^admin/', include(admin.site.urls)),##