diff --git a/README.md b/README.md index f07678195dc81dbc58a1c2d1f35af03255f05ad2..fbb5f7715589d52dbf8c2c5510a39867be91db86 100644 --- a/README.md +++ b/README.md @@ -11,11 +11,11 @@ list running containers enter running container - docker exec -it plan-git_django_1 bash + docker exec -it plan_django_1 bash logs - docker logs rdmo_django_1 + docker logs plan_django_1 ## compose @@ -25,7 +25,7 @@ build images: run container: - docker-compose build + docker-compose up create super-user (on first run) @@ -44,37 +44,26 @@ Additional commands have to be run on first setup or on upgrades docker exec -it rdmo_django_1 python3 manage.py createsuperuser +# Development +## Translation -# Usage (without docker - old) - -Clone the repo next to the rdmo-app dir and add symbolic links - - git clone git@gitlab.gwdg.de:era/plan.git rdmo-era-mod - cd rdmo-app - ln -s ../rdmo-era-mod/locale/ . - ln -s ../rdmo-era-mod/theme/ . - +Collect strings from modified templates: -# Translation - -To collect strings from modified templates: - - ./manage.py makemessages -l de -l en --symlinks --ignore "env/*" + docker exec plan_django_1 python3 manage.py makemessages -l de -l en to compile changes messages - ./manage.py compilemessages -l de -l en - + docker exec plan_django_1 python3 manage.py compilemessages -l de -l en -# Test +### old translation test stuff, TODO: test and dockerize pip install Babel pip install django-babel pybabel extract theme/templates/ env/lib/python3.6/site-packages/rdmo/projects/ -o locale/en/LC_MESSAGES/django.po -F ../rdmo-era-mod/babel.cfg -# with pybabel +#### with pybabel sudo apt install python3-django-babel diff --git a/compose/django/Dockerfile b/compose/django/Dockerfile index d08fa8026891d155c18248d6b61e4d057b859f20..0e3d7dd90051f1715ec6dbbeedff2db84118c5fa 100644 --- a/compose/django/Dockerfile +++ b/compose/django/Dockerfile @@ -5,6 +5,7 @@ RUN apt update -y && apt upgrade -y && apt install -y \ python3 \ python3-dev \ python3-pip \ + gettext \ git diff --git a/compose/django/Dockerfile.production b/compose/django/Dockerfile.production index aee7b947b126a5b49635b50882532e040df5294f..d95f7825a3b83dd65a402b7cbbd229051a6787e3 100644 --- a/compose/django/Dockerfile.production +++ b/compose/django/Dockerfile.production @@ -29,7 +29,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ && apt-get -y autoremove \ && rm -rf /var/lib/apt/lists/* -#COPY ./theme /app/theme +COPY ./theme /app/theme COPY ./locale /app/locale COPY ./config/production.py /app/config/settings/local.py diff --git a/config/local.py b/config/local.py index 41525af7c89398808bc2e31e8edf57cc0b1d4f23..3209fe710eb535d9cbc80efbf3d6beab3472e850 100644 --- a/config/local.py +++ b/config/local.py @@ -261,3 +261,7 @@ VENDOR_CDN = False THEME_DIR = os.path.join(BASE_DIR, 'theme') +LOCALE_PATHS = ( + os.path.join(BASE_DIR, 'locale'), +) + diff --git a/config/production.py b/config/production.py index 10f586d4da9f2b666295e741c4e1baebab13febe..293b36eb56f08dee332bc274ab5ffa2e827e355d 100644 --- a/config/production.py +++ b/config/production.py @@ -147,7 +147,7 @@ Theme, see also: http://rdmo.readthedocs.io/en/latest/configuration/themes.html ''' -# THEME_DIR = os.path.join(BASE_DIR, 'theme') +THEME_DIR = os.path.join(BASE_DIR, 'theme') ''' Export Formats @@ -338,5 +338,7 @@ LOGGING = { VENDOR_CDN = False -#THEME_DIR = os.path.join(BASE_DIR, 'theme') +LOCALE_PATHS = ( + os.path.join(BASE_DIR, 'locale'), +) diff --git a/docker-compose.yaml b/docker-compose.yaml index 51fe6fd61adcb433244471744d48eff7f51b06d6..cb0eb233ed3d755c9c6a704a15098ad0f55a5fe0 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -15,6 +15,7 @@ services: - postgres volumes: - ./theme:/app/theme + - ./locale:/app/locale env_file: - ./.envs/.django - ./.envs/.postgres diff --git a/locale/de/LC_MESSAGES/django.mo b/locale/de/LC_MESSAGES/django.mo index 7152e7d19be2d0888850ad6108a0f803319a4be8..b7659308688f3ee018ffb2a9495378acdc5c052e 100644 Binary files a/locale/de/LC_MESSAGES/django.mo and b/locale/de/LC_MESSAGES/django.mo differ diff --git a/locale/de/LC_MESSAGES/django.po b/locale/de/LC_MESSAGES/django.po index b8f879c799e23f761553d26267fe582ca5d56815..bc8276df7bcbd9bc8ce485e29d8b0711dd0f4c04 100644 --- a/locale/de/LC_MESSAGES/django.po +++ b/locale/de/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-23 11:49+0100\n" +"POT-Creation-Date: 2020-03-11 22:27+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -37,65 +37,81 @@ msgstr "" msgid "Contact" msgstr "" -#: theme/templates/core/base_navigation.html:29 +#: theme/templates/core/base_navigation.html:30 msgid "Management" msgstr "" -#: theme/templates/core/base_navigation.html:34 +#: theme/templates/core/base_navigation.html:35 +#: theme/templates/core/base_navigation.html:55 +msgid "Questions" +msgstr "" + +#: theme/templates/core/base_navigation.html:40 msgid "Domain" msgstr "" -#: theme/templates/core/base_navigation.html:39 +#: theme/templates/core/base_navigation.html:45 #: theme/templates/projects/project_detail.html:8 #: theme/templates/projects/projects.html:15 msgid "Options" msgstr "" -#: theme/templates/core/base_navigation.html:44 +#: theme/templates/core/base_navigation.html:50 msgid "Conditions" msgstr "" -#: theme/templates/core/base_navigation.html:49 -msgid "Questions" -msgstr "" - -#: theme/templates/core/base_navigation.html:54 +#: theme/templates/core/base_navigation.html:60 msgid "Tasks" msgstr "" -#: theme/templates/core/base_navigation.html:59 +#: theme/templates/core/base_navigation.html:65 msgid "Views" msgstr "" -#: theme/templates/core/base_navigation.html:67 +#: theme/templates/core/base_navigation.html:73 msgid "Admin" msgstr "" -#: theme/templates/core/base_navigation.html:80 +#: theme/templates/core/base_navigation.html:86 msgid "Language" msgstr "" -#: theme/templates/core/base_navigation.html:94 +#: theme/templates/core/base_navigation.html:102 +msgid "About RDMO" +msgstr "" + +#: theme/templates/core/base_navigation.html:111 msgid "Update profile" msgstr "" -#: theme/templates/core/base_navigation.html:116 +#: theme/templates/core/base_navigation.html:133 msgid "Logout" msgstr "" -#: theme/templates/core/base_navigation.html:127 +#: theme/templates/core/base_navigation.html:144 +#: theme/templates/core/home.html:60 msgid "Login" msgstr "" +#: theme/templates/core/home.html:42 +msgid "" +"A tool to support the planning, implementation, and organisation of research " +"data management. Powered by RDMO." +msgstr "" +"Ein Werkzeug zur Planung, Implementierung und Organisation von " +"Forschungsdatenmanagement. Unterstützt durch RDMO." + #: theme/templates/projects/project_detail.html:12 msgid "Answer questions" msgstr "Fragebogen ausfüllen" #: theme/templates/projects/project_detail.html:18 +#: theme/templates/projects/project_detail_snapshots.html:32 msgid "View answers" msgstr "Fragebogen ansehen" #: theme/templates/projects/project_detail.html:26 +#: theme/templates/projects/project_detail_snapshots.html:58 msgid "Create snapshot" msgstr "" @@ -108,6 +124,7 @@ msgid "Delete project" msgstr "" #: theme/templates/projects/project_detail.html:52 +#: theme/templates/projects/project_detail_memberships.html:46 msgid "Add member" msgstr "" @@ -119,51 +136,82 @@ msgstr "" msgid "Back to projects overview" msgstr "" -#: theme/templates/projects/project_detail.html:78 +#: theme/templates/projects/project_detail.html:80 #: theme/templates/projects/projects.html:63 msgid "Fill in Questionaire" msgstr "Fragebogen ausfüllen" -#: theme/templates/projects/project_detail.html:80 +#: theme/templates/projects/project_detail.html:83 +#: theme/templates/projects/project_detail_snapshots.html:14 msgid "Description" msgstr "" -#: theme/templates/projects/project_detail.html:88 +#: theme/templates/projects/project_detail.html:91 msgid "No description available." msgstr "" -#: theme/templates/projects/project_form.html:9 -#: theme/templates/projects/project_form.html:11 -msgid "Update project" +#: theme/templates/projects/project_detail_memberships.html:8 +msgid "Members" msgstr "" -#: theme/templates/projects/project_form.html:15 -#: theme/templates/projects/project_form.html:17 -#: theme/templates/projects/projects.html:19 -#: theme/templates/projects/projects.html:75 -msgid "Add new project" -msgstr "Neues Projekt hinzufügen" +#: theme/templates/projects/project_detail_memberships.html:12 +msgid "User" +msgstr "" -#: theme/templates/projects/project_questions.html:41 -msgid "Questionnaire for project <em>{$ service.project.title $}</em>" -msgstr "Fragebogen für Projekt <em>{$ service.project.title $}</em>" +#: theme/templates/projects/project_detail_memberships.html:13 +msgid "E-Mail" +msgstr "" -#: theme/templates/projects/project_questions.html:70 -msgid "Save" +#: theme/templates/projects/project_detail_memberships.html:14 +#: theme/templates/projects/projects.html:41 +msgid "Role" +msgstr "" + +#: theme/templates/projects/project_detail_memberships.html:31 +msgid "Update membership" msgstr "" -#: theme/templates/projects/project_questions.html:73 -msgid "Save and proceed" +#: theme/templates/projects/project_detail_memberships.html:36 +msgid "Delete membership" msgstr "" -#: theme/templates/projects/project_questions.html:79 -msgid "Back" +#: theme/templates/projects/project_detail_snapshots.html:7 +msgid "Snapshots" msgstr "" -#: theme/templates/projects/project_questions.html:82 -msgid "Skip" +#: theme/templates/projects/project_detail_snapshots.html:13 +msgid "Snapshot" msgstr "" +#: theme/templates/projects/project_detail_snapshots.html:15 +#: theme/templates/projects/projects.html:42 +msgid "Created" +msgstr "" + +#: theme/templates/projects/project_detail_snapshots.html:36 +msgid "Update snapshot" +msgstr "" + +#: theme/templates/projects/project_detail_snapshots.html:41 +msgid "Rollback to snapshot" +msgstr "" + +#: theme/templates/projects/project_detail_snapshots.html:52 +msgid "No snapshots found." +msgstr "" + +#: theme/templates/projects/project_form.html:9 +#: theme/templates/projects/project_form.html:11 +msgid "Update project" +msgstr "" + +#: theme/templates/projects/project_form.html:15 +#: theme/templates/projects/project_form.html:17 +#: theme/templates/projects/projects.html:19 +#: theme/templates/projects/projects.html:75 +msgid "Add new project" +msgstr "Neues Projekt hinzufügen" + #: theme/templates/projects/project_questions_sidebar.html:4 msgid "Progress" msgstr "" @@ -172,23 +220,23 @@ msgstr "" msgid "Overview" msgstr "" -#: theme/templates/projects/project_questions_sidebar.html:41 +#: theme/templates/projects/project_questions_sidebar.html:34 msgid "Navigation" msgstr "" -#: theme/templates/projects/project_questions_sidebar.html:44 +#: theme/templates/projects/project_questions_sidebar.html:37 msgid "Please note that using the navigation will discard any usaved input." msgstr "" -#: theme/templates/projects/project_questions_sidebar.html:50 +#: theme/templates/projects/project_questions_sidebar.html:43 msgid "skip to previous page" msgstr "" -#: theme/templates/projects/project_questions_sidebar.html:55 +#: theme/templates/projects/project_questions_sidebar.html:48 msgid "skip to next page" msgstr "" -#: theme/templates/projects/project_questions_sidebar.html:62 +#: theme/templates/projects/project_questions_sidebar.html:55 msgid "Back to project overview" msgstr "" @@ -212,14 +260,6 @@ msgstr "" msgid "Name" msgstr "" -#: theme/templates/projects/projects.html:41 -msgid "Role" -msgstr "" - -#: theme/templates/projects/projects.html:42 -msgid "Created" -msgstr "" - #: theme/templates/projects/projects.html:43 msgid "Template" msgstr "" @@ -236,3 +276,6 @@ msgstr "Projekteinstellungen bearbeiten" #: theme/templates/projects/projects.html:66 msgid "Delete Project" msgstr "Projekt löschen" + +#~ msgid "Questionnaire for project <em>{$ service.project.title $}</em>" +#~ msgstr "Fragebogen für Projekt <em>{$ service.project.title $}</em>" diff --git a/locale/en/LC_MESSAGES/django.po b/locale/en/LC_MESSAGES/django.po index 7599c7fb6144e9e2a2a94de2596aecd78fafe2f1..23bb0f28b9782891b16a12802b18660dbe1e9cac 100644 --- a/locale/en/LC_MESSAGES/django.po +++ b/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-23 11:49+0100\n" +"POT-Creation-Date: 2020-03-11 22:27+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -36,65 +36,79 @@ msgstr "" msgid "Contact" msgstr "" -#: theme/templates/core/base_navigation.html:29 +#: theme/templates/core/base_navigation.html:30 msgid "Management" msgstr "" -#: theme/templates/core/base_navigation.html:34 +#: theme/templates/core/base_navigation.html:35 +#: theme/templates/core/base_navigation.html:55 +msgid "Questions" +msgstr "" + +#: theme/templates/core/base_navigation.html:40 msgid "Domain" msgstr "" -#: theme/templates/core/base_navigation.html:39 +#: theme/templates/core/base_navigation.html:45 #: theme/templates/projects/project_detail.html:8 #: theme/templates/projects/projects.html:15 msgid "Options" msgstr "" -#: theme/templates/core/base_navigation.html:44 +#: theme/templates/core/base_navigation.html:50 msgid "Conditions" msgstr "" -#: theme/templates/core/base_navigation.html:49 -msgid "Questions" -msgstr "" - -#: theme/templates/core/base_navigation.html:54 +#: theme/templates/core/base_navigation.html:60 msgid "Tasks" msgstr "" -#: theme/templates/core/base_navigation.html:59 +#: theme/templates/core/base_navigation.html:65 msgid "Views" msgstr "" -#: theme/templates/core/base_navigation.html:67 +#: theme/templates/core/base_navigation.html:73 msgid "Admin" msgstr "" -#: theme/templates/core/base_navigation.html:80 +#: theme/templates/core/base_navigation.html:86 msgid "Language" msgstr "" -#: theme/templates/core/base_navigation.html:94 +#: theme/templates/core/base_navigation.html:102 +msgid "About RDMO" +msgstr "" + +#: theme/templates/core/base_navigation.html:111 msgid "Update profile" msgstr "" -#: theme/templates/core/base_navigation.html:116 +#: theme/templates/core/base_navigation.html:133 msgid "Logout" msgstr "" -#: theme/templates/core/base_navigation.html:127 +#: theme/templates/core/base_navigation.html:144 +#: theme/templates/core/home.html:60 msgid "Login" msgstr "" +#: theme/templates/core/home.html:42 +msgid "" +"A tool to support the planning, implementation, and organisation of research " +"data management. Powered by RDMO." +msgstr "" + #: theme/templates/projects/project_detail.html:12 msgid "Answer questions" msgstr "Fill in Questionaire" #: theme/templates/projects/project_detail.html:18 +#: theme/templates/projects/project_detail_snapshots.html:32 msgid "View answers" msgstr "View Questionaire" #: theme/templates/projects/project_detail.html:26 +#: theme/templates/projects/project_detail_snapshots.html:58 msgid "Create snapshot" msgstr "" @@ -107,6 +121,7 @@ msgid "Delete project" msgstr "" #: theme/templates/projects/project_detail.html:52 +#: theme/templates/projects/project_detail_memberships.html:46 msgid "Add member" msgstr "" @@ -118,49 +133,80 @@ msgstr "" msgid "Back to projects overview" msgstr "" -#: theme/templates/projects/project_detail.html:78 +#: theme/templates/projects/project_detail.html:80 #: theme/templates/projects/projects.html:63 msgid "Fill in Questionaire" msgstr "Fragebogen ausfüllen" -#: theme/templates/projects/project_detail.html:80 +#: theme/templates/projects/project_detail.html:83 +#: theme/templates/projects/project_detail_snapshots.html:14 msgid "Description" msgstr "" -#: theme/templates/projects/project_detail.html:88 +#: theme/templates/projects/project_detail.html:91 msgid "No description available." msgstr "" -#: theme/templates/projects/project_form.html:9 -#: theme/templates/projects/project_form.html:11 -msgid "Update project" +#: theme/templates/projects/project_detail_memberships.html:8 +msgid "Members" msgstr "" -#: theme/templates/projects/project_form.html:15 -#: theme/templates/projects/project_form.html:17 -#: theme/templates/projects/projects.html:19 -#: theme/templates/projects/projects.html:75 -msgid "Add new project" +#: theme/templates/projects/project_detail_memberships.html:12 +msgid "User" +msgstr "" + +#: theme/templates/projects/project_detail_memberships.html:13 +msgid "E-Mail" msgstr "" -#: theme/templates/projects/project_questions.html:41 -msgid "Questionnaire for project <em>{$ service.project.title $}</em>" +#: theme/templates/projects/project_detail_memberships.html:14 +#: theme/templates/projects/projects.html:41 +msgid "Role" msgstr "" -#: theme/templates/projects/project_questions.html:70 -msgid "Save" +#: theme/templates/projects/project_detail_memberships.html:31 +msgid "Update membership" msgstr "" -#: theme/templates/projects/project_questions.html:73 -msgid "Save and proceed" +#: theme/templates/projects/project_detail_memberships.html:36 +msgid "Delete membership" msgstr "" -#: theme/templates/projects/project_questions.html:79 -msgid "Back" +#: theme/templates/projects/project_detail_snapshots.html:7 +msgid "Snapshots" msgstr "" -#: theme/templates/projects/project_questions.html:82 -msgid "Skip" +#: theme/templates/projects/project_detail_snapshots.html:13 +msgid "Snapshot" +msgstr "" + +#: theme/templates/projects/project_detail_snapshots.html:15 +#: theme/templates/projects/projects.html:42 +msgid "Created" +msgstr "" + +#: theme/templates/projects/project_detail_snapshots.html:36 +msgid "Update snapshot" +msgstr "" + +#: theme/templates/projects/project_detail_snapshots.html:41 +msgid "Rollback to snapshot" +msgstr "" + +#: theme/templates/projects/project_detail_snapshots.html:52 +msgid "No snapshots found." +msgstr "" + +#: theme/templates/projects/project_form.html:9 +#: theme/templates/projects/project_form.html:11 +msgid "Update project" +msgstr "" + +#: theme/templates/projects/project_form.html:15 +#: theme/templates/projects/project_form.html:17 +#: theme/templates/projects/projects.html:19 +#: theme/templates/projects/projects.html:75 +msgid "Add new project" msgstr "" #: theme/templates/projects/project_questions_sidebar.html:4 @@ -171,23 +217,23 @@ msgstr "" msgid "Overview" msgstr "" -#: theme/templates/projects/project_questions_sidebar.html:41 +#: theme/templates/projects/project_questions_sidebar.html:34 msgid "Navigation" msgstr "" -#: theme/templates/projects/project_questions_sidebar.html:44 +#: theme/templates/projects/project_questions_sidebar.html:37 msgid "Please note that using the navigation will discard any usaved input." msgstr "" -#: theme/templates/projects/project_questions_sidebar.html:50 +#: theme/templates/projects/project_questions_sidebar.html:43 msgid "skip to previous page" msgstr "" -#: theme/templates/projects/project_questions_sidebar.html:55 +#: theme/templates/projects/project_questions_sidebar.html:48 msgid "skip to next page" msgstr "" -#: theme/templates/projects/project_questions_sidebar.html:62 +#: theme/templates/projects/project_questions_sidebar.html:55 msgid "Back to project overview" msgstr "" @@ -211,14 +257,6 @@ msgstr "" msgid "Name" msgstr "" -#: theme/templates/projects/projects.html:41 -msgid "Role" -msgstr "" - -#: theme/templates/projects/projects.html:42 -msgid "Created" -msgstr "" - #: theme/templates/projects/projects.html:43 msgid "Template" msgstr "" diff --git a/theme/templates/core/home.html b/theme/templates/core/home.html new file mode 100644 index 0000000000000000000000000000000000000000..cd5bd51f6e46e9b84081583f118b6580d21678ad --- /dev/null +++ b/theme/templates/core/home.html @@ -0,0 +1,67 @@ +{% extends 'core/base.html' %} +{% load i18n compress staticfiles core_tags %} + +{% block head %} +{% compress css %} +<link rel="stylesheet" type="text/x-scss" href="{% static 'core/css/header.scss' %}" /> +{% endcompress %} +{% compress js %} +<script type="text/javascript" src="{% static 'core/js/header.js' %}" ></script> +{% endcompress %} +{% endblock %} + +{% block content %} + +<header> + <div class="hidden-xs"> + <div class="header-image header-image-0 visible"> + <img src="{% static 'core/img/header/library.jpg' %}"></img> + <p class="attribution"> + <a href="https://www.flickr.com/photos/spam/5086168739">Stockholm Public Library (Samantha Marx)</a> / <a href="https://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a> + </p> + </div> + <div class="header-image header-image-1"> + <img src="{% static 'core/img/header/supercomputer.jpg' %}"></img> + <p class="attribution"> + <a href="https://www.flickr.com/photos/nasa_goddard/6559334541">Discover Supercomputer 3 (NASA Goddard Space Flight Center)</a> / <a href="https://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a> + </p> + </div> + <div class="header-image header-image-2"> + <img src="{% static 'core/img/header/collection.jpg' %}"></img> + <p class="attribution"> + <a href="https://www.flickr.com/photos/bulle_de/9221247815">Nasssammlung (Christopher Bulle)</a> / <a href="https://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a> + </p> + </div> + </div> + <div class="container header-text"> + + <h1>GRO.plan</h1> + + <div class="row"> + <div class="col-md-9"> + <p>{% trans "A tool to support the planning, implementation, and organisation of research data management. Powered by RDMO." %}</p> + </div> + </div> + </div> +</header> + +<div class="container page"> + <div class="row"> + <div class="col-md-9"> + {% get_current_language as lang %} + {% if lang == 'en' %} + {% include 'core/home_text_en.html' %} + {% elif lang == 'de' %} + {% include 'core/home_text_de.html' %} + {% endif %} + </div> + + <div class="col-md-3"> + <h3>{% trans 'Login' %}</h3> + + {% include 'account/login_form.html' %} + </div> + </div> +</div> + +{% endblock %} diff --git a/theme/templates/core/home_text_de.html b/theme/templates/core/home_text_de.html new file mode 100644 index 0000000000000000000000000000000000000000..42b78cbf838ee44239f7633774b01c69bd6d3b92 --- /dev/null +++ b/theme/templates/core/home_text_de.html @@ -0,0 +1,5 @@ +<h2>Willkommen zu GRO.plan.</h2> + +<p>Beschreiben, planen und pflegen Sie Ihr Forschungsdatenmanagement am Göttingen Campus. Wählen Sie aus verschiedenen, auf die Empfehlungen von Förderern zugeschnittenen Fragensets, welche Sie durch die Erstellung Ihres Datenmanagementplans leiten und Sie bei dessen Anpassung unterstützen. Verwenden Sie Import- und Export-Funktionen um mehrere Pläne zu verwalten, Elemente wiederzuverwenden und Änderungen nachzuverfolgen. Profitieren Sie von Vorlagen und Informationen, welche auf die Informationsinfrastruktur am Göttingen Campus zugeschnitten sind.</p> + +<p>Dieser Service basiert auf der vom RDMO-Projekt zur Verfügung gestellten, freien Software. Für weitere Informationen besuchen Sie rdmorganiser.github.io.</p> diff --git a/theme/templates/core/home_text_en.html b/theme/templates/core/home_text_en.html new file mode 100644 index 0000000000000000000000000000000000000000..644c38e0999631b6a3aa78d8de6d4aa4ad807cc5 --- /dev/null +++ b/theme/templates/core/home_text_en.html @@ -0,0 +1,6 @@ +<h2>Welcome to GRO.plan.</h2> + +<p>Describe, schedule and maintain your Research Data Management at the Göttingen Campus. You can choose from different question sets tailored to funders' recommendations that guide you in creating a Data Management Plan (DMP) for your research project or group and adapt the specifications over time. Use import and export functionalities to maintain several plans, re-use elements and track changes. Benefit from information and templates specific to the Göttingen Campus information infrastructure. +</p> + +<p>This service is based on the free software provided by the RDMO project. For more information visit rdmorganiser.github.io.</p>