hello everyone, i'm very new to django, jet i think it's exellent ;) we are trying to port 10 pages to django, so we're still in "learning" process. here is my question: i'm trying to build a simple news page, which will just list all news which are added. on the top first page 2 news entries and at the bottom all the rest of them. i've made a model, but i'm stuck with views. i've looked at almost every post here at django-group that talk about views and i still can't get it right.
so, i thought i should ask somebody;) i've created Novica model which looks like this: from django.db import models # novica model. class Novica(models.Model): title = models.CharField(maxlength=250) slug = models.SlugField(prepopulate_from=('title',)) pub_date = models.DateTimeField('date published') body = models.TextField() def __str__(self): return self.title class Admin: list_filter = ['pub_date'] search_fields = ['title'] date_hierarchy = 'pub_date' pass and my urls.py looks like this: from django.conf.urls.defaults import * from drosk.novica.models import Novica from django.views.generic.list_detail import object_list info_dict = { 'queryset': Novica.objects.all(), 'date_field': 'pub_date', } urlpatterns = patterns('django.views.generic.list_detail', # Example: # (r'^drosk/', include('drosk.apps.foo.urls.foo')), (r'^novica/$','django.views.generic.list_detail.object_list',dict(info_dict,template_name="novica/index.html"$)) now i have problems with views.py. all i want to do for now is list all news items (object name Novica), their title, date and body text. is there anybody who is so kind enough to point me to the right direction? i've managed to do this: from django.template import Context, loader from drosk.novica.models import Novica from django.http import HttpResponse from django.views.generic.list_detail import object_detail def index(request): latest_novica_list = novica.get_list(order_by=['-pub_date']) t = loader.get_template('novica/index.html') c = Context({ 'latest_novica_list': latest_novica_list, }) return HttpResponse(t.render(c)) but i guess that's wrong, since i'm getting all sorts of errors. i know i have to use object_detail (generic views) but i'm not sure about date_based.archive_index. thanks for your help in advance. bye everyone, martin --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---