-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
623 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,353 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<rdmo xmlns:dc="http://purl.org/dc/elements/1.1/" created="2024-03-12T15:06:25.311577+01:00" version="2.0.0"> | ||
<view dc:uri="https://rdmorganiser.github.io/terms/views/costs"> | ||
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix> | ||
<uri_path>costs</uri_path> | ||
<dc:comment/> | ||
<order>0</order> | ||
<title lang="en">Cost overview</title> | ||
<help lang="en">Overview of the personnel and non-personnel costs</help> | ||
<title lang="de">Kostenübersicht</title> | ||
<help lang="de">Übersicht der Personal- und Sachkosten</help> | ||
<title lang="fr">Aperçu des coûts</title> | ||
<help lang="fr">Aperçu des frais de personnel et de matériel</help> | ||
<title lang="it">Panoramica dei costi</title> | ||
<help lang="it">Panoramica dei costi del personale e dei materiali</help> | ||
<title lang="es">Resumen de costes</title> | ||
<help lang="es">Resumen de los costes de personal y material</help> | ||
<catalogs/> | ||
<template>{% load view_tags %} | ||
{% load mathfilters %} | ||
{% load i18n %} | ||
{% get_current_language as LANGUAGE_CODE %} | ||
{% get_set 'project/dataset' as datasets %} | ||
{% get_number 'project/costs/creation/personnel' as creationp %} | ||
{% get_number 'project/costs/creation/non_personnel' as creationnp %} | ||
{% get_number 'project/costs/usage/personnel' as usagep %} | ||
{% get_number 'project/costs/usage/non_personnel' as usagenp %} | ||
{% get_number 'project/costs/storage/personnel' as storagep %} | ||
{% get_number 'project/costs/storage/non_personnel' as storagenp %} | ||
{% get_number 'project/costs/metadata/personnel' as metadatap %} | ||
{% get_number 'project/costs/metadata/non_personnel' as metadatanp %} | ||
{% get_number 'project/costs/pid/personnel' as pidp %} | ||
{% get_number 'project/costs/pid/non_personnel' as pidnp %} | ||
{% get_number 'project/costs/sensitive_data/anonymization/personnel' as anonymizationp %} | ||
{% get_number 'project/costs/sensitive_data/anonymization/non_personnel' as anonymizationnp %} | ||
{% get_number 'project/costs/sensitive_data/security/personnel' as securityp %} | ||
{% get_number 'project/costs/sensitive_data/security/non_personnel' as securitynp %} | ||
{% get_number 'project/costs/ipr/personnel' as iprp %} | ||
{% get_number 'project/costs/ipr/non_personnel' as iprnp %} | ||
{% get_number 'project/costs/preservation/personnel' as preservationp %} | ||
{% get_number 'project/costs/preservation/non_personnel' as preservationnp %} | ||
|
||
{% if LANGUAGE_CODE == "de" %} | ||
|
||
<h1>Kostenübersicht</h1> | ||
|
||
<h2>1. Datengröße | ||
</h2> | ||
|
||
<table> | ||
<tr> | ||
<th> | ||
<b>Datensatz</b> | ||
</th> | ||
<th> | ||
<b>Datengröße</b> | ||
</th> | ||
<th> | ||
<b>Zuwachsrate / Jahr</b> | ||
</th> | ||
</tr> | ||
{% for dataset in datasets %} | ||
<tr> | ||
<td>{% render_set_value dataset 'project/dataset/id' %}</td> | ||
<td>{% render_set_value dataset 'project/dataset/size/volume' %}</td> | ||
<td>{% render_set_value dataset 'project/dataset/rate' %}</td> | ||
</tr> | ||
{% endfor %} | ||
</table> | ||
|
||
<p> | ||
<b> | ||
Laufzeit des Projekts | ||
</b>: | ||
{% render_value 'project/schedule/project_start' %} | ||
bis | ||
{% render_value 'project/schedule/project_end' %} | ||
</p> | ||
|
||
<p> | ||
In welchem Umfang werden | ||
<b>Infrastrukturressourcen</b> | ||
benötigt?: | ||
{% render_value 'project/dataset/usage_infrastructure' %} | ||
</p> | ||
<h2> | ||
2. Personal- und Sachkosten | ||
</h2> | ||
|
||
<table> | ||
<tr> | ||
<th> | ||
<b>Kategorie</b> | ||
</th> | ||
<th> | ||
<b>Personalkosten</b> | ||
</th> | ||
<th> | ||
<b>Sachkosten</b> | ||
</th> | ||
</tr> | ||
<tr> | ||
<td> | ||
Datenerhebung | ||
</td> | ||
<td> | ||
{% render_value 'project/costs/creation/personnel' %}</td> | ||
<td> | ||
{% render_value 'project/costs/creation/non_personnel' %}</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
Datennutzung | ||
</td> | ||
<td> | ||
{% render_value 'project/costs/usage/personnel' %}</td> | ||
<td> | ||
{% render_value 'project/costs/usage/non_personnel' %}</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
Datenspeicherung | ||
</td> | ||
<td> | ||
{% render_value 'project/costs/storage/personnel' %}</td> | ||
<td> | ||
{% render_value 'project/costs/storage/non_personnel' %}</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
Metadaten</td> | ||
<td> | ||
{% render_value 'project/costs/metadata/personnel' %}</td> | ||
<td> | ||
{% render_value 'project/costs/metadata/non_personnel' %}</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
Persistente Identifikatoren</td> | ||
<td> | ||
{% render_value 'project/costs/pid/personnel' %}</td> | ||
<td> | ||
{% render_value 'project/costs/pid/non_personnel' %}</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
Anonymisierung sensibler Daten</td> | ||
<td> | ||
{% render_value 'project/costs/sensitive_data/anonymization/personnel' %}</td> | ||
<td> | ||
{% render_value 'project/costs/sensitive_data/anonymization/non_personnel' %}</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
Sicherheitsmaßnahmen für sensible Daten</td> | ||
<td> | ||
{% render_value 'project/costs/sensitive_data/security/personnel' %}</td> | ||
<td> | ||
{% render_value 'project/costs/sensitive_data/security/non_personnel' %}</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
Urheber- und Schutzrechte</td> | ||
<td> | ||
{% render_value 'project/costs/ipr/personnel' %}</td> | ||
<td> | ||
{% render_value 'project/costs/ipr/non_personnel' %}</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
Langzeitarchivierung</td> | ||
<td> | ||
{% render_value 'project/costs/preservation/personnel' %}</td> | ||
<td> | ||
{% render_value 'project/costs/preservation/non_personnel' %}</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
<b>Summe</b> | ||
</td> | ||
<td> | ||
{{ creationp | addition:usagep | addition:storagep | addition:metadatap | addition:pidp | addition:anonymizationp | addition:securityp | addition:iprp | addition:preservationp }} | ||
PM | ||
</td> | ||
<td> | ||
{{ creationnp | addition:usagenp | addition:storagenp | addition:metadatanp | addition:pidnp | addition:anonymizationnp | addition:securitynp | addition:iprnp | addition:preservationnp }} | ||
Euro</td> | ||
</tr> | ||
</table> | ||
|
||
<p> | ||
Wie werden die Kosten für das Datenmanagement im Projekt aufgebracht? | ||
{% render_value 'project/costs/preservation/cover_how' %} | ||
</p> | ||
|
||
{% endif %} | ||
<! --------------------------------------- Wenn die Sprache Englisch eingestellt ist --------------------------------------------------!> | ||
{% if LANGUAGE_CODE == "en" %} | ||
|
||
<h1>Cost Overview</h1> | ||
|
||
<h2>1. Data Sizes | ||
</h2> | ||
|
||
<table> | ||
<tr> | ||
<th> | ||
<b>Dataset</b> | ||
</th> | ||
<th> | ||
<b>Data size</b> | ||
</th> | ||
<th> | ||
<b>Growth rate / Year</b> | ||
</th> | ||
</tr> | ||
{% for dataset in datasets %} | ||
<tr> | ||
<td>{% render_set_value dataset 'project/dataset/id' %}</td> | ||
<td>{% render_set_value dataset 'project/dataset/size/volume' %}</td> | ||
<td>{% render_set_value dataset 'project/dataset/rate' %}</td> | ||
</tr> | ||
{% endfor %} | ||
</table> | ||
|
||
<p> | ||
<b> | ||
Duration of the project | ||
</b>: | ||
{% render_value 'project/schedule/project_start' %} | ||
bis | ||
{% render_value 'project/schedule/project_end' %} | ||
</p> | ||
|
||
<p> | ||
To what extent will | ||
<b>infrastructure resources</b> | ||
required? | ||
{% render_value 'project/dataset/usage_infrastructure' %} | ||
</p> | ||
<h2> | ||
2. Personnel and material costs | ||
</h2> | ||
|
||
<table> | ||
<tr> | ||
<th> | ||
<b>Category</b> | ||
</th> | ||
<th> | ||
<b>Personnel costs</b> | ||
</th> | ||
<th> | ||
<b>Material costs</b> | ||
</th> | ||
</tr> | ||
<tr> | ||
<td> | ||
Data collection | ||
</td> | ||
<td> | ||
{% render_value 'project/costs/creation/personnel' %}</td> | ||
<td> | ||
{% render_value 'project/costs/creation/non_personnel' %}</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
Data use | ||
</td> | ||
<td> | ||
{% render_value 'project/costs/usage/personnel' %}</td> | ||
<td> | ||
{% render_value 'project/costs/usage/non_personnel' %}</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
Data storage | ||
</td> | ||
<td> | ||
{% render_value 'project/costs/storage/personnel' %}</td> | ||
<td> | ||
{% render_value 'project/costs/storage/non_personnel' %}</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
Metadata</td> | ||
<td> | ||
{% render_value 'project/costs/metadata/personnel' %}</td> | ||
<td> | ||
{% render_value 'project/costs/metadata/non_personnel' %}</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
Persistent identifiers</td> | ||
<td> | ||
{% render_value 'project/costs/pid/personnel' %}</td> | ||
<td> | ||
{% render_value 'project/costs/pid/non_personnel' %}</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
Anonymising sensitive data</td> | ||
<td> | ||
{% render_value 'project/costs/sensitive_data/anonymization/personnel' %}</td> | ||
<td> | ||
{% render_value 'project/costs/sensitive_data/anonymization/non_personnel' %}</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
Security measures for sensitive data</td> | ||
<td> | ||
{% render_value 'project/costs/sensitive_data/security/personnel' %}</td> | ||
<td> | ||
{% render_value 'project/costs/sensitive_data/security/non_personnel' %}</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
Copyright and property rights</td> | ||
<td> | ||
{% render_value 'project/costs/ipr/personnel' %}</td> | ||
<td> | ||
{% render_value 'project/costs/ipr/non_personnel' %}</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
Long-term archiving</td> | ||
<td> | ||
{% render_value 'project/costs/preservation/personnel' %}</td> | ||
<td> | ||
{% render_value 'project/costs/preservation/non_personnel' %}</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
<b>Total</b> | ||
</td> | ||
<td> | ||
{{ creationp | addition:usagep | addition:storagep | addition:metadatap | addition:pidp | addition:anonymizationp | addition:securityp | addition:iprp | addition:preservationp }} | ||
PM | ||
</td> | ||
<td> | ||
{{ creationnp | addition:usagenp | addition:storagenp | addition:metadatanp | addition:pidnp | addition:anonymizationnp | addition:securitynp | addition:iprnp | addition:preservationnp }} | ||
Euro</td> | ||
</tr> | ||
</table> | ||
|
||
<p> | ||
How are the costs for data management raised in the project? | ||
{% render_value 'project/costs/preservation/cover_how' %} | ||
</p> | ||
|
||
{% endif %}</template> | ||
</view> | ||
</rdmo> |
Oops, something went wrong.