vote up -2 vote down star

I am using def get_absolute_url in my model. It is giving the wrong "View on Site" link. How can it be corrected?

flag

19% accept rate
You'll need to post the code in get_absolute_url, and probably some context about what your model is and how your urls are set up. – Dominic Rodger May 27 at 10:12
it redirect to something http:127.0.0.1:8000/admin/r/32/2323 – ha22109 May 27 at 12:08
Yep, but then when you click that, it ought to redirect to the actual url. – Dominic Rodger May 27 at 13:23
any solution? it has been almost a week – ha22109 Jun 5 at 10:54

3 Answers

vote up 1 vote down

Does the link start with example.com? If so, you might have to change the default Site domain in the Django admin site.

link|flag
how it can be done – ha22109 Jun 2 at 13:21
@ha22109 Is the link starting with example.com? If so, log into the admin interface, and select the "Sites" option, and edit the site called "example.com". If the "Sites" option doesn't appear post back. – Dominic Rodger Jun 5 at 10:41
vote up 0 vote down

commment out this line in sudo vi ~/python/../django/contrib/admin/tempplates/admin/change_form.html {% if has_absolute_url %}

  • {% trans "View on site" %}
  • {% endif%}

    link|flag
    vote up 0 vote down

    it is very simple just to to template directory and comment out the line where there is view on site.simple will work

    But mind it if u r not using it anyother place

    link|flag

    Your Answer

    Get an OpenID
    or

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