vote up 1 vote down star

I added a get_absolute_url function to one of my models.

def get_absolute_url(self):
    return '/foo/bar'

The admin site picks it up and adds a "view on site" link to the detail page for that object (when I put a real URL there instead of "/foo/bar").

The problem is instead of going to http://localhost:8000/foo/bar, it goes to http://example.com/foo/bar.

What am I doing wrong?

flag

2 Answers

vote up 7 vote down check

You have to change default site domain value.

link|flag
1  
Thanks. It took me a while to figure out how to do that. It's an entry in the django_site table. I found and changed it by clicking on "Sites" in the admin. – Patrick McElhaney Dec 5 '08 at 20:12
vote up 1 vote down

You can change this in /admin/sites if you have admin enabled.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.