Guillermo Fernandez Castellanos wrote:
> And what about the admin "view on site" and the feeds? They both
> depend on the get_absolute_url. How could this be 'integrated' as well
> into your solution?

Reverse is not designed to replace get_absolute_url. It's just a more 
general solution because with get_absolute_url you can address only 
model's pages and with reversing from views you can address almost any 
page on the site. "Almost" stands for things like flatpages and generic 
views, and the latter is a biggest flaw of reverse for now.

In fact you can use reverse inside a get_absolute_url also:

     class AModel(models.Model):
       ...
       def get_absolute_url(self):
         from django.core.urlresolvers import reverse, NoReverseMatch
         project_name = settings.SETTINGS_MODULE.split('.')[0]
         view_name = '%s.app_name.views.amodel' % project_name
         return reverse(view_name, args=[self.id])

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