mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-07 16:56:43 +02:00
19 lines
389 B
PHP
19 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() ?>
|