2021-09-02 16:34:25 +00:00
|
|
|
<?= $this->extend('_layout') ?>
|
2020-08-05 16:10:39 +00:00
|
|
|
|
|
|
|
<?= $this->section('title') ?>
|
|
|
|
<?= lang('Contributor.view', [
|
2022-03-04 14:33:48 +00:00
|
|
|
'username' => esc($contributor->username),
|
|
|
|
'podcastTitle' => esc($podcast->title),
|
2020-08-05 16:10:39 +00:00
|
|
|
]) ?>
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
2022-03-04 14:33:48 +00:00
|
|
|
<?= $this->section('pageTitle') ?>
|
|
|
|
<?= lang('Contributor.view', [
|
|
|
|
'username' => esc($contributor->username),
|
|
|
|
'podcastTitle' => esc($podcast->title),
|
|
|
|
]) ?>
|
|
|
|
<?= $this->endSection() ?>
|
2020-08-05 16:10:39 +00:00
|
|
|
|
|
|
|
<?= $this->section('content') ?>
|
2021-11-05 14:36:34 +00:00
|
|
|
<div class="px-4 py-5 bg-base sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6">
|
|
|
|
<dt class="text-sm font-medium leading-5 text-skin-muted">
|
2022-03-04 14:33:48 +00:00
|
|
|
<?= lang('Contributor.list.username') ?>
|
2020-08-05 16:10:39 +00:00
|
|
|
</dt>
|
2021-11-05 14:36:34 +00:00
|
|
|
<dd class="mt-1 text-sm leading-5 sm:mt-0 sm:col-span-2">
|
2022-03-04 14:33:48 +00:00
|
|
|
<?= esc($contributor->username) ?>
|
2020-08-05 16:10:39 +00:00
|
|
|
</dd>
|
|
|
|
</div>
|
2021-11-05 14:36:34 +00:00
|
|
|
<div class="px-4 py-5 bg-base sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6">
|
|
|
|
<dt class="text-sm font-medium leading-5 text-skin-muted">
|
2022-03-04 14:33:48 +00:00
|
|
|
<?= lang('Contributor.list.role') ?>
|
2020-08-05 16:10:39 +00:00
|
|
|
</dt>
|
2021-11-05 14:36:34 +00:00
|
|
|
<dd class="mt-1 text-sm leading-5 sm:mt-0 sm:col-span-2">
|
2020-08-05 16:10:39 +00:00
|
|
|
<?= $contributor->podcast_role ?>
|
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
<?= $this->endSection() ?>
|