Hanze_Surfnet_Data_POC/Enquete/enquete/templates/index.html
2022-02-17 14:35:54 +01:00

20 lines
758 B
HTML

{% extends 'base.html' %} <!-- Add this for inheritance -->
{% load i18n %}
{% block title %}{% trans "Virtual Research Environment" %}{% endblock %}
{% block pagetitle %}{% trans "Virtual Research Environment" %}{% endblock %}
{% block content %}
<p>
<strong>{% trans "Secure data drops to RUG Phd students" %}</strong>
</p>
<p>{% trans "Here you can securely upload files for Phd students and researchers." %}</p>
<p>
{% trans "The following actions can be done:" %}
<ol>
<li>{% trans "Study overview for grouping uploads for a single research study" %}</li>
<li>{% trans "Create a new study" %}</li>
<li>{% trans "Get a list of all the uploaded files for your studies" %}</li>
<li>{% trans "Logout" %}</li>
</ol>
</p>
{% endblock %}