mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-10 16:25:47 +00:00
20 lines
389 B
PHP
20 lines
389 B
PHP
<?= $this->extend('../cp_admin/_layout') ?>
|
|
|
|
<?= $this->section('title') ?>
|
|
<?= lang('Subscription.view', [
|
|
esc($subscription->id),
|
|
]) ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
<?= $this->section('pageTitle') ?>
|
|
<?= lang('Subscription.view', [
|
|
esc($subscription->id),
|
|
]) ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<?= $subscription->email ?>
|
|
|
|
<?= $this->endSection() ?>
|