2023-06-21 16:17:11 +00:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
|
|
|
|
?>
|
|
|
|
<?= $this->extend('_layout') ?>
|
|
|
|
|
|
|
|
<?= $this->section('title') ?>
|
|
|
|
<?= lang('Podcast.all_imports') ?>
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('pageTitle') ?>
|
|
|
|
<?= lang('Podcast.all_imports') ?>
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('headerRight') ?>
|
2024-04-26 17:57:25 +00:00
|
|
|
<?php // @icon('add-fill')?>
|
|
|
|
<Button uri="<?= route_to('podcast-imports-add') ?>" variant="primary" iconLeft="add-fill"><?= lang('Podcast.import') ?></Button>
|
2023-06-21 16:17:11 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
|
|
|
|
<?= $this->include('import/_queue_table'); ?>
|
|
|
|
|
|
|
|
<?= $this->endSection() ?>
|