if ($all_files) : ?>
$tfoot_link = [
'text' => sprintf(
ngettext('Insgesamt %d Datei', 'Insgesamt %d Dateien', $all_files_c),
$all_files_c
),
'href' => $controller->link_for('files/overview', ['view' => 'all_files'])
];
?>
= CSRFProtection::tokenTag() ?>
"
:files="files"
:topfolder="topfolder"
enable_table_filter="false"
table_title="= _('Alle Dateien') ?>"
:show_bulk_actions="false"
:tfoot_link="= htmlReady(json_encode($tfoot_link)) ?>"
>
endif ?>
if ($uploaded_files) : ?>
$tfoot_link = [
'text' => sprintf(
ngettext('Insgesamt %d Datei', 'Insgesamt %d Dateien', $uploaded_files_c),
$uploaded_files_c
),
'href' => $controller->link_for('files/overview', ['view' => 'my_uploaded_files'])
];
?>
= CSRFProtection::tokenTag() ?>
"
:files="files"
:topfolder="topfolder"
enable_table_filter="false"
table_title="= _('Persönlicher Dateibereich') ?>"
:show_bulk_actions="false"
:tfoot_link="= htmlReady(json_encode($tfoot_link)) ?>"
>
endif ?>
if ($public_files) : ?>
$tfoot_link = [
'text' => sprintf(
ngettext('Insgesamt %d Datei', 'Insgesamt %d Dateien', $public_files_c),
$public_files_c
),
'href' => $controller->link_for('files/overview', ['view' => 'my_public_files'])
];
?>
= CSRFProtection::tokenTag() ?>
"
:files="files"
:topfolder="topfolder"
enable_table_filter="false"
table_title="= _('Meine öffentlichen Dateien') ?>"
:show_bulk_actions="false"
:tfoot_link="= htmlReady(json_encode($tfoot_link)) ?>"
>
endif ?>
if ($uploaded_unlic_files) : ?>
$tfoot_link = [
'text' => sprintf(
ngettext('Insgesamt %d Datei', 'Insgesamt %d Dateien', $uploaded_unlic_files_c),
$uploaded_unlic_files_c
),
'href' => $controller->link_for('files/overview', ['view' => 'my_uploaded_files_unknown_license'])
];
?>
= CSRFProtection::tokenTag() ?>
"
:files="files"
:topfolder="topfolder"
enable_table_filter="false"
table_title="= _('Meine Dateien mit ungeklärter Lizenz') ?>"
:show_bulk_actions="false"
:tfoot_link="= htmlReady(json_encode($tfoot_link)) ?>"
>
endif ?>
if ($no_files ?? false) : ?>
= MessageBox::info(_('Es sind keine Dateien vorhanden, die für Sie zugänglich sind!')) ?>
endif ?>