diff --git a/conifer/templates/my_sites.xhtml b/conifer/templates/my_sites.xhtml
index e12e5dc..71b7aba 100644
--- a/conifer/templates/my_sites.xhtml
+++ b/conifer/templates/my_sites.xhtml
@@ -18,12 +18,12 @@ title = _('My Reserves')
?>
You are not part of any course-reserve sites at this time.
- ${site.list_display()}
+ ${site}
diff --git a/conifer/templates/site_detail.xhtml b/conifer/templates/site_detail.xhtml
index dc7b0ca..7b06b6e 100644
--- a/conifer/templates/site_detail.xhtml
+++ b/conifer/templates/site_detail.xhtml
@@ -17,7 +17,8 @@ is_joinable = site.is_joinable_by(request.user)
${site_banner(site)}
Join this site
diff --git a/conifer/urls.py b/conifer/urls.py
index f0ec87f..eeac6c3 100644
--- a/conifer/urls.py
+++ b/conifer/urls.py
@@ -42,5 +42,5 @@ if not settings.DEBUG:
if settings.LINKTOOL_AUTHENTICATION:
urlpatterns += patterns(
'conifer.integration.linktool.app',
- (r'^linktool-welcome/$', 'linktool_welcome'))
+ (r'^linktool-welcome/(?P
.*)$', 'linktool_welcome'))