not yet working fully
This commit is contained in:
@@ -5,13 +5,18 @@
|
||||
{% block title %}GDPR Opt-In{% endblock %}
|
||||
|
||||
{% block main %}
|
||||
<p>
|
||||
We know you are eager to start using rowsandall.com, but we must
|
||||
ask you to read and agree with the below first.
|
||||
</p>
|
||||
|
||||
<h2>GDPR Opt-In</h2>
|
||||
<p>
|
||||
<b>
|
||||
To comply with the European Union General Data Protection Regulation,
|
||||
we need to record your consent to use personal data on this website.
|
||||
Please take some time to review our data policies. If you agree and
|
||||
opt in, click the green button at the bottom to be taken to the site.
|
||||
opt in, click the "opt in" button at the bottom to be taken to the site.
|
||||
If you do not agree, please use the red button to delete your
|
||||
account. This will irreversibly delete all your data on rowsandall.com
|
||||
and remove your account.
|
||||
@@ -32,7 +37,7 @@
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<a class="button gray small" href="/rowers/me/gdpr-optin-confirm/?next={{ next }}">Opt in and continue</a>
|
||||
<a class="button green small" href="/rowers/me/gdpr-optin-confirm/?next={{ next }}">Opt in and continue</a>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
{% block scripts %}
|
||||
<script>
|
||||
setTimeout("location.reload(true);",60000);
|
||||
setTimeout("location.reload(true);",180000);
|
||||
</script>
|
||||
<script
|
||||
type='text/javascript'
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
<li>
|
||||
<a href={{ request.path|userurl:member }}>
|
||||
<i class="fas fa-user fa-fw"></i>
|
||||
{% if member == rower.user and team.id == 0 %}
|
||||
{% if member == rower.user and not team %}
|
||||
•
|
||||
{% else %}
|
||||
|
||||
|
||||
@@ -41,6 +41,17 @@ $('#id_workouttype').change();
|
||||
|
||||
{% block main %}
|
||||
|
||||
<p>
|
||||
{% if workout|previousworkout:rower.user %}
|
||||
<a href="/rowers/workout/{{ workout|previousworkout:rower.user }}/edit"
|
||||
title="Jump to preceding workout"><em>Previous</em></a>
|
||||
{% endif %}
|
||||
{% if workout|nextworkout:rower.user %}
|
||||
<a href="/rowers/workout/{{ workout|nextworkout:rower.user }}/edit"
|
||||
title="Jump to following workout"><em>Next</em></a>
|
||||
{% endif %}
|
||||
</p>
|
||||
|
||||
<h1>Edit Workout {{ workout.name }}</h1>
|
||||
<ul class="main-content">
|
||||
<li class="grid_4">
|
||||
|
||||
Reference in New Issue
Block a user