20 lines
		
	
	
		
			758 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			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 %} |