diff --git a/rmgweb/main/templates/terms.html b/rmgweb/main/templates/terms.html new file mode 100644 index 00000000..2eb6f7fc --- /dev/null +++ b/rmgweb/main/templates/terms.html @@ -0,0 +1,100 @@ +{% extends "base.html" %} + + + +{% block title %}Terms of Use{% endblock %} + +{% block extrahead %}{% endblock %} + +{% block navbar_items %} +
  • Terms of Use
  • +{% endblock %} + +{% block sidebar_items %}{% endblock %} + +{% block page_title %}Terms of Use{% endblock %} + +{% block page_body %} + +

    +Last updated: March 28, 2018. + +Please carefully read these Terms of Use ("Terms", "Terms of Use") before using the +RMG website (the "Website"), operated by the Green Research Group at MIT ("us", "we", or "our"). + +Your access and use of the Website is conditioned on your acceptance and compliance with these Terms. +These Terms apply to all visitors, users, and others who access or use the Website. + +By accessing or using the Website you agree to be bound by these Terms. +If you disagree with any part of the terms then you may not access the Website. +

    + +

    Restrictions

    +

    +You agree not to use any automated system or script to access this Website, in a manner that +sends more requests to our servers than is reasonable for a human to produce in the same period. +All data and services provided by the Website are freely available on GitHub, as detailed in the +Licensing section below. +

    + +

    Licensing

    +

    +All content on this Website, including the website itself, is available via the open source MIT license. +Source code for the Website, RMG-Py, and RMG-database can be found on the ReactionMechanismGenerator +GitHub site (https://github.com/ReactionMechanismGenerator). +

    + +

    +Termination +

    +

    +We may terminate or suspend access to our Website immediately, without prior notice or liability, +for any reason whatsoever, including without limitation if you breach the Terms. + +All provisions of the Terms which by their nature should survive termination shall survive termination, +including, without limitation, ownership provisions, warranty disclaimers, indemnity and limitation of liability. +

    + +

    Links To Other Web Sites

    +

    +Our Website may contain links to third-party web sites or services that are not owned or controlled +by the Green Research Group. + +The Green Research Group has no control over, and assumes no responsibility for, the content, +privacy policies, or practices of any third party web sites or services. You further acknowledge and +agree that the Green Research Group shall not be responsible or liable, directly or indirectly, for any +damage or loss caused or alleged to be caused by or in connection with use of or reliance on any +such content, goods or services available on or through any such web sites or services. +

    + +

    Disclaimers

    +

    +We try our best to provide the best database for chemical kinetic modeling, but your use of this +data and this Service is at your sole risk. This data is provided on an "as is" and "as available" basis, +and we expressly disclaim all express or implied warranties. +

    + +

    Changes

    +

    +We reserve the right, at our sole discretion, to modify or replace these Terms at any time. If a +revision is material we will try to provide at least 30 days' notice prior to any new terms +taking effect. What constitutes a material change will be determined at our sole discretion. +

    + +

    Contact Us

    +

    +The website is (primarily) developed by the research groups of +

    + +

    +Please post comments or concerns about the website to +our issues page +or email the RMG Development Team at rmg_dev@mit.edu +

    + +{% endblock %} diff --git a/rmgweb/main/views.py b/rmgweb/main/views.py index 764c0446..eda7bacc 100644 --- a/rmgweb/main/views.py +++ b/rmgweb/main/views.py @@ -55,6 +55,12 @@ def index(request): return render(request, 'index.html', {'version': __version__}) +def terms(request): + """ + The RMG terms of use. + """ + return render_to_response('terms.html', context_instance=RequestContext(request)) + def privacy(request): """ The RMG privacy policy. diff --git a/rmgweb/urls.py b/rmgweb/urls.py index 56bb1e0a..6b8172d4 100644 --- a/rmgweb/urls.py +++ b/rmgweb/urls.py @@ -64,6 +64,9 @@ # The RMG website homepage re_path(r'^$', rmgweb.main.views.index, name='index'), + # The terms of use + re_path(r'^terms$', rmgweb.main.views.terms), + # The privacy policy re_path(r'^privacy$', rmgweb.main.views.privacy, name='privacy'),