blob: 9c7544be283fa2673bc36311032e503653261e4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php use Fisharebest\Webtrees\I18N; ?>
<div class="wt-stories-tab py-4">
<?php foreach ($stories as $story) : ?>
<div class="story_title descriptionbox text-center rela">
<?= e($story->title) ?>
</div>
<div class="story_body optionbox">
<?= $story->story_body ?>
</div>
<?php if ($is_admin) : ?>
<div class="story_edit">
<a href="<?= e(route('module', ['module' => 'stories', 'action' => 'AdminEdit', 'block_id' => $story->block_id, 'ged' => $tree->name()])) ?>">
<?= I18N::translate('Edit the story') ?>
</a>
</div>
<?php endif ?>
<?php endforeach ?>
<?php if ($is_admin && empty($stories)) : ?>
<div>
<a href="<?= e(route('module', ['module' => 'stories', 'action' => 'AdminEdit', 'xref' => $individual->xref(), 'ged' => $tree->name()])) ?>">
<?= I18N::translate('Add a story') ?>
</a>
</div>
<?php endif ?>
</div>
|