{% extends 'template/template.j2.html' %} {% block title %} {{ $t('sidebar.mongo') }} {% endblock %} {% block content %}

{{ $t('database.test.title') }}

{{ $t('MongoDB example with CRUD operations') }}

{% for record in allRecords %} {% endfor %} {% if not allRecords ?? allRecords|length == 0 %} {% endif %}
{{ $t('database.table.header.title') }} {{ $t('database.table.header.slug') }} {{ $t('database.table.header.action') }}
{{ record.title }}
{{ record.slug }}

{{ $t('database.table.empty') if $t('database.table.empty') else $t('No records found') }}

{% if pagination %}
{{ pagination }}
{% endif %}
{% endblock %}