opensurvey/main/templates/main/data.html

32 lines
829 B
HTML
Raw Normal View History

2022-02-19 20:16:53 +01:00
{% extends 'base.html' %}
{% load static %}
{% load i18n %}
{% block intro %}
<section class="intro">
<div class="intro-content">
<h1>{% trans "Access the Data" %}</h1>
<p>
{% blocktrans %}
Your data belongs to you! If you want to get a transcript with your past responses to the survey, <a
href="#">click here!</a> You will be redirected to our Open Humans server which stores your data securely.
{% endblocktrans %}
</p>
</div>
</section>
{% endblock intro %}
{% block main %}
<section>
<article>
<p>
{% blocktrans %}
As the survey just launched, we are waiting a few days to gain enough data points to show you the trends! Come
back later and see whats happening around you!
{% endblocktrans %}
</p>
</article>
</section>
{% endblock main %}