castopod/themes/cp_admin/import/podcast_queue.php
2024-12-17 15:11:45 +00:00

17 lines
508 B
PHP

<?= $this->extend('_layout') ?>
<?= $this->section('pageTitle') ?>
<?= lang('Podcast.all_imports') ?>
<?= $this->endSection() ?>
<?= $this->section('headerRight') ?>
<?php // @icon("loop-left-fill")?>
<x-Button uri="<?= route_to('podcast-imports-sync', $podcast->id) ?>" variant="primary" iconLeft="loop-left-fill"><?= lang('PodcastImport.syncForm.title') ?></x-Button>
<?= $this->endSection() ?>
<?= $this->section('content') ?>
<?= $this->include('import/_queue_table'); ?>
<?= $this->endSection() ?>