Ask Your Question
1

Missing link URL on 404 page

asked 2012-05-04 10:45:02 -0500

todofixthis gravatar image todofixthis flag of Chile
1092 17 18 37
http://www.fiveyearsabroa...

updated 2012-05-04 10:46:04 -0500

While investigating a 404 error in my GWT account (http://expats.askbot.com/get-tags-by-wildcard/), I noticed that one link on the 404 page goes to... the same page!

Screenshot of web inspector highlighting an anchor tag with an empty href attribute

Here's where the link appears on the page:

Screenshot indicating location of the broken link on the 404 page

delete close flag offensive retag edit

1 Answer

Sort by ยป oldest newest most voted
1

answered 2012-05-04 11:33:08 -0500

zaf gravatar image zaf
554 8 9 26

updated 2012-05-04 11:47:16 -0500

True, it happens to me also. Until it's commited by the development team, you may want to edit file skins/default/templates/404.jinja.html and instead of (around line 20)

<a href="{{feedback_site_url}}" target="_blank">

put

<a href={% if settings.FEEDBACK_SITE_URL %}
                        "{{settings.FEEDBACK_SITE_URL}}"
                        target="_blank"
                    {% else %}
                        "{% url feedback %}?next={{request.path}}"
                    {% endif %}>

That should work, I just copied it from footer.html. For your changes to take affect you should then run

python setup.py install
python manage.py collectstatic

Cheers!

link publish delete flag offensive edit

Your answer

Please start posting your answer anonymously - your answer will be saved within the current session and published after you log in or create a new account. Please try to give a substantial answer, for discussions, please use comments and please do remember to vote (after you log in)!

[hide preview]

Reliable Askbot Hosting

Create your Q&A site at askbot.com. Managed Askbot hosting at just $15/mo. Dedicated hosting, support contracts, consulting services.

create your Q&A site
30 days free trial

Question tools

Follow

subscribe to rss feed

Stats

Asked: 2012-05-04 10:45:02 -0500

Seen: 47 times

Last updated: May 04 '12