Skip to content

Commit

Permalink
add SITE_PUBLISHER setting to the terms of use
Browse files Browse the repository at this point in the history
  • Loading branch information
kimakan committed Sep 11, 2023
1 parent 3e3fd12 commit 7938997
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
22 changes: 11 additions & 11 deletions daiquiri/auth/templates/account/terms_of_use.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
}
</style>

<h4>Using webservice facilities at AIP</h4>
<h4>Using webservice facilities at {{ settings.SITE_PUBLISHER }} </h4>
<hr>
<ol>
<li>
<p>
Registering for use of a webservice at AIP is creating an account for the webservice.
Registering for use of a webservice at {{ settings.SITE_PUBLISHER }} is creating an account for the webservice.
</p>
<p>
A registered user is provided with a limited storage space to cache their results from
queries to data provided via this webservice.
queries to data provided via this webservice.
</p>
</li>

Expand All @@ -32,28 +32,28 @@ <h4>Using webservice facilities at AIP</h4>
dowloading to other storage location.
</p>
<p>
The usage includes the management of the allocated storage space by the registered user
The usage includes the management of the allocated storage space by the registered user
by provided means (via TAP protocol or web interface).
</p>
</li>

<li>
<p>
The AIP reserves the right to remove the allocated storage
The {{ settings.SITE_PUBLISHER }} reserves the right to remove the allocated storage
<ul>
<li>if this is used for illegal, commercial or other private purposes,</li>
<li>the user is using the provided account for attacking the service.</li>
</ul>
</p>
<p>
The AIP also reserves the right to terminate the account unlaterally without recourse
The {{ settings.SITE_PUBLISHER }} also reserves the right to terminate the account unlaterally without recourse
if the usage is deemed harmful or unlawful.
</p>
</li>

<li>
<p>
For creating the user account only minimal personal data is collected.
For creating the user account only minimal personal data is collected.
</p>
<p>
The collected personal data is neither used for other than the stated means,
Expand All @@ -64,11 +64,11 @@ <h4>Using webservice facilities at AIP</h4>

<li>
<p>
Neither the API, nor the webservice providers shall be held accountable for any
loss of data or data integrity of the user's storage space.
Neither the {{ settings.SITE_PUBLISHER }} , nor the webservice providers shall be held accountable for any
loss of data or data integrity of the user's storage space.
</p>
<p>
No guarantee is provided that login is possible at all times.
No guarantee is provided that login is possible at all times.
</p>
<p>
The service is offered on a best effort basis.
Expand All @@ -77,7 +77,7 @@ <h4>Using webservice facilities at AIP</h4>

<li>
<p>
By acknowledigng these terms the user is consenting to the above statements.
By acknowledigng these terms the user is consenting to the above statements.
</p>
</li>
</ol>
1 change: 1 addition & 0 deletions daiquiri/core/settings/django.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@
'ACCOUNT_LOGOUT_ON_GET',
'AUTH_WORKFLOW',
'AUTH_TERMS_OF_USE',
'SITE_PUBLISHER',
'METADATA_COLUMN_PERMISSIONS',
'QUERY_DROPDOWN_FUNCTIONS',
'QUERY_DROPDOWNS',
Expand Down

0 comments on commit 7938997

Please sign in to comment.