Hi everyone,

Newbie to Django/Python but I'm lovin' it so far...!

I'm working on an aggregator based off of

http://code.djangoproject.com/browser/djangoproject.com/django_website/apps/aggregator

that I want to be something like http://news.originalsignal.com

I'm unsure of how the logic in relationship to django would work...

Here's what I'm thinking:

Models: 2 models, 1. Feed, 2. FeedItem
views: retrieves data from model objects returns data to template
urls.py: points to view class/function
template: displays data

My main question concerns urls.py.

This is how the aggegator functions in the Django website

urls.py
aggregator_info_dict = {
'queryset': FeedItem.objects.select_related(),
'paginate_by': 15,
}
urlpatterns = patterns('',
(r'^community/$', 'django.views.generic.list_detail.object_list',
aggregator_info_dict),
)

Now, would my urls.py point to a function that returns the data?
Should the view or urls.py tell the app which template to use?

Any help would be greatly appreciated.


--~--~---------~--~----~------------~-------~--~----~
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