Hi.
`permalink` - is a decorator [1], not an 'ordinary' function. So it
can be used like this:

@permalink
def get_url(self):
      return ('experiment_view', (), {'exp_id': self.id})

[1]: 
http://www.djangoproject.com/documentation/model-api/#the-permalink-decorator

On Jul 22, 1:30 pm, mwebs <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I have a very strange problem with the permalink-decorator:
>
> model:
> ....
> def get_url(self):
>       return permalink('experiment_view', (), {'exp_id': self.id})
>
> urls.py:
> ...
> url(r'^(?P<exp_id>\d+)$', 'edit_experiment', name='experiment_view'),
>
> in my template <h1>{{exp.get_url}}</h1> returns an empty string. But
> the function get_url() is invoked. The problem is the permalink
> decorator. It seems as if he can not resolve the url.
>
> I dont have any idea what I am doing wrong.
> Thanks for your help.
> Toni
--~--~---------~--~----~------------~-------~--~----~
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