{# -*- coding: utf-8 -*- # # This file is part of Invenio. # Copyright (C) 2016 CERN. # # Invenio is free software; you can redistribute it # and/or modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # Invenio is distributed in the hope that it will be # useful, but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Invenio; if not, write to the # Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, # MA 02111-1307, USA. # # In applying this license, CERN does not # waive the privileges and immunities granted to it by virtue of its status # as an Intergovernmental Organization or submit itself to any jurisdiction. -#} {%- extends config.MARC21_BASE_TEMPLATE %} {%- block page_body %}
{%- block record_body %}
{%- block record_title %}

{{ record.get('title_statement', {}).get('title', _('No title')) }}

{%- endblock %} {%- block record_author %} {%- if 'main_entry_personal_name' in record %}

{{ record['main_entry_personal_name']['personal_name'] }} {%- for author in record.get('added_entry_personal_name', []) %} , {{ author['personal_name'] }} {% endfor %}

{% endif %} {%- endblock %} {%- block record_summary %} {%- for summary in record.get('summary', []) %}

{{ summary['summary'] }}

{% endfor %} {%- endblock %}
{%- endblock %} {%- block record_extra_info %}
{%- if pid %} {%- block record_control_number %}
{{ _('Control number') }}
{{ record.get('control_number', pid.value) }}
{%- endblock %} {% endif %} {%- if 'publication_distribution_imprint' in record %} {%- block record_publication_date %}
{{ _('Publication date') }}
{{ record['publication_distribution_imprint'][0]['date_of_publication_distribution'][0] }}
{%- endblock %} {% endif %} {%- if '$schema' in record %} {%- block record_schema %}
{{ _('Schema') }}
{{ record['$schema'] }}
{%- endblock %} {% endif %} {%- include "invenio_records_ui/export_well.html" %}
{%- endblock %}
{%- endblock %}