RECORDS_UI_ENDPOINTS = dict(
recid=dict(
pid_type='recid',
route='/records/<pid_value>',
template='invenio_records_ui/detail.html'
)
Replace the recid as title to the real title of the document.
touch my_instance/templates/my_instance/detail.html
Note: do not forget to run the static file collect: my_instance collect -v
RECORDS_UI_ENDPOINTS = dict(
recid=dict(
pid_type='recid',
route='/records/<pid_value>',
template='my_instance/detail.html'
)
<!-- inheritance -->
{% extends 'invenio_records_ui/detail.html' %}
<!-- display title instead of recid -->
{%- block record_title %}
<h2>
{{ record.title }}
</h2>
{%- endblock %}