Skip to content

Commit 49ab77a

Browse files
committed
Fix gold imports
1 parent a61dfc5 commit 49ab77a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

readthedocs/templates/homepage.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ <h3>{% trans "Read the Docs is funded by the community" %}</h3>
123123
<p>
124124
Read the Docs is funded by readers like you.
125125
Help keep the site alive and well by supporting us with a <a href="{% url "gold_detail" %}">Gold Subscription</a>.
126-
You can also make one-time donations on our <a href='{% url "donate" %}'>sustainability</a> page.
127126
</p>
128127
<p>
129128
Hosting for the project is graciously provided by <a href="http://www.rackspace.com/cloud/">Rackspace</a>.

readthedocs/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
url(r'^accounts/', include('readthedocs.profiles.urls.private')),
4545
url(r'^accounts/', include('allauth.urls')),
4646
url(r'^notifications/', include('readthedocs.notifications.urls')),
47+
url(r'^accounts/gold/', include('readthedocs.gold.urls')),
4748
# For redirects
4849
url(r'^builds/', include('readthedocs.builds.urls')),
4950
# For testing the 404's with DEBUG on.
@@ -87,7 +88,6 @@
8788
# Include donation URL's
8889
groups.append([
8990
url(r'^sustainability/', include('readthedocsext.donate.urls')),
90-
url(r'^accounts/gold/', include('readthedocs.gold.urls')),
9191
])
9292
if not getattr(settings, 'USE_SUBDOMAIN', False) or settings.DEBUG:
9393
groups.insert(0, docs_urls)

0 commit comments

Comments
 (0)