Clicking on "Forums" in the top nav sends user to <a href='{% url
forum_index %}/'> in forum_list.html. Clinks on that links result in a 404
because the user is sent to forums// instead of forum/
Fixed by removing extra slash from end of link:
old:
<a href='{% url forum_index %}/'>
new:
<a href='{% url forum_index %}'>
Original issue reported on code.google.com by redsnapp...@gmail.com on 1 Jun 2008 at 1:02
Original issue reported on code.google.com by
redsnapp...@gmail.com
on 1 Jun 2008 at 1:02