Am Mittwoch, 7. November 2007 schrieb Marty Alchin:
> On 11/7/07, Florian Lindner <[EMAIL PROTECTED]> wrote:
> > But why does the root urls.py works that also contains the line
> >
> > from django.conf.urls.defaults import *
> >
> > or the manage.py script or another installed app in the same project
> > directory?
>
> If you post the whole contents of the 'xgm.Blog.urls' module, it might
> be more clear what's going on. Use http://dpaste.com/ if it's too
> large for email.

It's not much: 



from django.conf.urls.defaults import *
from models import *

info_dict = { "queryset": BlogEntry.objects.all().order_by("-creationDate"), }

urlpatterns = patterns("",
    (r'^$', 'django.views.generic.list_detail.object_list', dict(info_dict, 
allow_empty=True, paginate_by=3)),
    
(r'^page(?P<page>[0-9]+)/$', 'django.views.generic.list_detail.object_list', 
dict(info_dict, allow_empty=True, paginate_by=3)),
    (r"^newComment/$", django.views.generic.create_update.create_object, 
dict(model=BlogComment))
)

Regards,

Florian

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to