diff --git a/rdmorganiser/views/costs-en.xml b/rdmorganiser/views/costs-en.xml deleted file mode 100644 index 5b93432e..00000000 --- a/rdmorganiser/views/costs-en.xml +++ /dev/null @@ -1,187 +0,0 @@ - - - - https://rdmorganiser.github.io/terms - costs-en - - Cost overview [en] - Overview of the personnel and non-personnel costs [en] - Kostenübersicht [en] - Übersicht der Personal- und Sachkosten [en] - - - - diff --git a/rdmorganiser/views/costs-de.xml b/rdmorganiser/views/costs.xml similarity index 53% rename from rdmorganiser/views/costs-de.xml rename to rdmorganiser/views/costs.xml index e6109f29..0b826a65 100644 --- a/rdmorganiser/views/costs-de.xml +++ b/rdmorganiser/views/costs.xml @@ -4,14 +4,15 @@ https://rdmorganiser.github.io/terms costs - Cost overview [de] - Overview of the personnel and non-personnel costs [de] - Kostenübersicht [de] - Übersicht der Personal- und Sachkosten [de] + Cost overview + Overview of the personnel and non-personnel costs + Kostenübersicht + Übersicht der Personal- und Sachkosten +</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 %}