diff options
author | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-06-08 20:16:18 +0100 |
---|---|---|
committer | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-06-08 20:16:18 +0100 |
commit | d645660c50e0680838f4cd618c35b78ae40f0dd6 (patch) | |
tree | a504f04989334860719ab660a9c12287eec7149e /templates/frontpage.html | |
parent | 096f74a3f35b53e2d479f6091c6acbc1000ae032 (diff) | |
download | troggle-d645660c50e0680838f4cd618c35b78ae40f0dd6.tar.gz troggle-d645660c50e0680838f4cd618c35b78ae40f0dd6.tar.bz2 troggle-d645660c50e0680838f4cd618c35b78ae40f0dd6.zip |
[svn] Rewrote get_absolute_url methods of models to use urlparse.urljoin instead of just +ing the urls together. This fixes problems with double slashes.
Diffstat (limited to 'templates/frontpage.html')
-rw-r--r-- | templates/frontpage.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/frontpage.html b/templates/frontpage.html index 6ca3791..a193771 100644 --- a/templates/frontpage.html +++ b/templates/frontpage.html @@ -31,7 +31,7 @@ Everyone is gearing up for the 2009 expedition; please see the link below for th <h3>Troggle development</h3>
<p class="indent">
-Troggle is still under development, and there is <a href="{%url todo%}">much work to do</a>.
+Troggle is still under development. Check out the <a href="http://troggle.googlecode.com">development page</a> on google code, where you can file bug reports, make suggestions, and help develop the code. There is also an old todo list at <a href="{%url todo%}">here</a>.
</p>
</div>
{% endblock content %}
|