blob: 50951decc3f09c944b3a5cd10b53f29d9b46ef47 (
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
28
29
30
31
32
33
34
35
36
37
38
|
<?php use Fisharebest\Webtrees\I18N; ?>
<h2 class="wt-page-title"><?= $title ?></h2>
<form method="post" action="<?= e(route('edit-note-object-action', ['tree' => $tree->name(), 'xref' => $note->xref()])) ?>" class="wt-page-options">
<?= csrf_field() ?>
<div class="row form-group">
<label class="col-sm-3 col-form-label wt-page-options-label" for="NOTE">
<?= I18N::translate('Shared note') ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<textarea class="form-control" name="NOTE" id="NOTE" rows="10" dir="auto"><?= e($note->getNote()) ?></textarea>
<a class="wt-osk-trigger" data-id="NOTE" href="#" title="<?= I18N::translate('Find a special character') ?>">
<?= view('icons/keyboard') ?>
<span class="sr-only"><?= I18N::translate('Find a special character') ?></span>
</a>
</div>
</div>
<div class="row form-group">
<div class="col-sm-9 offset-sm-3">
<button class="btn btn-primary" type="submit">
<?= view('icons/save') ?>
<?= /* I18N: A button label. */
I18N::translate('save') ?>
</button>
<a class="btn btn-secondary" href="<?= e($note->url()) ?>">
<?= view('icons/cancel') ?>
<?= /* I18N: A button label. */
I18N::translate('cancel') ?>
</a>
</div>
</div>
</form>
<?= view('modals/on-screen-keyboard') ?>
|