{# Copyright (C) 2020-2023 Graz University of Technology. invenio-theme-tugraz is free software; you can redistribute it and/or modify it under the terms of the MIT License; see LICENSE file for more details. #} {%- extends config.INVENIO_THEME_TUGRAZ_BASE_TEMPLATE %} {%- block javascript %} {{ webpack['invenio-theme-tugraz-js.js'] }} {%- endblock javascript %} {%- from "invenio_theme_tugraz/macros/authors.html" import creators -%} {%- block page_body %}

{{ _('Recent uploads') }}

{% if not records %}

{{ _('There are no public records to show.') }}

{% endif %} {%- for r in records %} {%- set creation_date = r.created|from_isodatetime -%} {%- set record_url = url_for('invenio_app_rdm_records.record_detail', pid_value=r.id) %}
{{ r.metadata.publication_date }} {{ '(' ~ r.metadata.version ~ ')' if r.metadata.version }} {{ r.ui.resource_type.title_l10n }} {% if r.ui.access_status.icon %}{% endif %} {{ r.ui.access_status.title_l10n }}

{{ r.metadata.title }}

{{ creators(r.metadata.creators) }}

{%- for s in r.metadata.subjects %}
{{ s.subject }}
{%- endfor %}
{% trans user=userprofile, date=creation_date | dateformat('long')%} Uploaded on {{date}} {% endtrans %}
{%- endfor %} {% if records %} {%- endif %}

{{ _("You can upload different types of records:") }}

{{ _("Visibility of uploaded content is maximized through synchronization with data hubs (DataCite).") }} {{ _("Upload Research Output") }}

{{ _("Open Educational Resources (OER) will be visible on various discovery tools like the OERhub.") }} {{ _("Upload OER") }}

{{ _("Need help?") }}

{%- if config.THEME_TUGRAZ_CONTACT_FORM %}
{{ _("Contact us") }}
{%- endif %}

{{ config.THEME_SITENAME }} {{ _("prioritizes all Recent uploads.") }}

{{ _("We can help with:") }}

  • {{ _("Uploading your research data, software, preprints, etc.") }}
  • {{ _("One-on-one with") }} {{ config.THEME_SITENAME }} {{ _("supporters.") }}
  • {{ _("Quota increases beyond our default policy.") }}
  • {{ _("Scripts for automated uploading of larger datasets.") }}

{{ _("Why use") }} {{ config.THEME_SITENAME }}?

{% include "invenio_theme_tugraz/benefits.html" %}
{%- endblock %}