blob: bc31e460b28753f74f4ea68584dfa74c16c0546a (
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
|
<?php use Fisharebest\Webtrees\Functions\FunctionsEdit; ?>
<?php use Fisharebest\Webtrees\I18N; ?>
<h2 class="wt-page-title"><?= $title ?></h2>
<form class="wt-page-content" method="post">
<?= csrf_field() ?>
<div class="form-group row">
<label class="col-sm-3 col-form-label" for="spouse">
<?= $label ?>
</label>
<div class="col-sm-9">
<?= FunctionsEdit::formControlIndividual($tree, null, ['id' => 'spouse', 'name' => 'spid']) ?>
</div>
</div>
<?= FunctionsEdit::addSimpleTag($tree, '0 MARR Y') ?>
<?= FunctionsEdit::addSimpleTag($tree, '0 DATE', 'MARR') ?>
<?= FunctionsEdit::addSimpleTag($tree, '0 PLAC', 'MARR') ?>
<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($individual->url()) ?>">
<?= view('icons/cancel') ?>
<?= /* I18N: A button label. */
I18N::translate('cancel') ?>
</a>
</div>
</div>
</form>
|