hi,

im trying to build an app which basically is based on the practical
django projects weblog.

my problem now is that i have a "Project" model and i can get the
archive_index view but i cant solve the object_detail url and i dont
understand where im doing wrong.

my model:

class Project(models.Model):
    title               =   models.CharField(max_length=250)
    type                =   models.ManyToManyField(Type)
    sicurezzaFinanziamento= models.BooleanField(default=False)
    pub_date            =  
models.DateTimeField(default=datetime.datetime.now, editable=False)
    author              =   models.ForeignKey(User)
    slug                =   models.SlugField(unique_for_date='pub_date')
   
    class Meta:
        ordering=['-pub_date']
        verbose_name_plural = "Projects"
       
    def __unicode__(self):
        return self.title
  
    def get_absolute_url(self):
        return ('EUprojects_project_detail', (), {'year':
self.pub_date.strftime("%Y"),
                                                  'month':
self.pub_date.strftime("%b").lower(),
                                                  'day':
self.pub_date.strftime("%d"),
                                                  'slug': self.slug })
    get_absolute_url = models.permalink(get_absolute_url)

the urlpattern

     
(r'^(?P<year>\d{4})/(?P<month>\w{3})/(?P<day>\d{2})/(?P<slug>[-\w]+)/$',
       'object_detail',
       projects_info_dict,
       'EUprojects_project_detail'),   

{{ object.get_absolute_url }} does not output anything in the
template... why?

is something missing?

--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to