Merge pull request #272 from MITx/release_fixes

Removed copyright page, until it can be updated for edX.
This commit is contained in:
David Ormsbee
2012-07-23 11:52:51 -07:00
2 changed files with 5 additions and 3 deletions

View File

@@ -23,7 +23,8 @@
<section class="bottom">
<section class="copyright">
<p>&copy; 2012 edX, <a href="${reverse('copyright')}">some rights reserved.</a></p>
## <p>&copy; 2012 edX, <a href="${reverse('copyright')}">some rights reserved.</a></p> # TODO: (bridger) Update the copyright for edX, then re-enable the link.
<p>&copy; 2012 edX, some rights reserved.</p>
</section>
<section class="secondary">

View File

@@ -69,8 +69,9 @@ urlpatterns = ('',
{'template': 'tos.html'}, name="tos"),
url(r'^privacy$', 'static_template_view.views.render',
{'template': 'privacy.html'}, name="privacy_edx"),
url(r'^copyright$', 'static_template_view.views.render',
{'template': 'copyright.html'}, name="copyright"),
# TODO: (bridger) The copyright has been removed until it is updated for edX
# url(r'^copyright$', 'static_template_view.views.render',
# {'template': 'copyright.html'}, name="copyright"),
url(r'^honor$', 'static_template_view.views.render',
{'template': 'honor.html'}, name="honor"),