diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2018-10-12 11:04:12 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2018-10-12 11:15:32 +0100 |
| commit | dd6b2bfcc550270bb6d6778e11576148f71e4330 (patch) | |
| tree | 9462a8eabe1103a0e79c18c521b6b4858a3fb2dc /resources/views/edit/link-spouse-to-individual.phtml | |
| parent | afb591d7c8a3029b0ca03e6d185cacca3c22eb5f (diff) | |
| download | webtrees-dd6b2bfcc550270bb6d6778e11576148f71e4330.tar.gz webtrees-dd6b2bfcc550270bb6d6778e11576148f71e4330.tar.bz2 webtrees-dd6b2bfcc550270bb6d6778e11576148f71e4330.zip | |
Use .phtml extension for template files
Diffstat (limited to 'resources/views/edit/link-spouse-to-individual.phtml')
| -rw-r--r-- | resources/views/edit/link-spouse-to-individual.phtml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/resources/views/edit/link-spouse-to-individual.phtml b/resources/views/edit/link-spouse-to-individual.phtml new file mode 100644 index 0000000000..a8c9ee2596 --- /dev/null +++ b/resources/views/edit/link-spouse-to-individual.phtml @@ -0,0 +1,37 @@ +<?php use Fisharebest\Webtrees\FontAwesome; ?> +<?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"> + <?= FontAwesome::decorativeIcon('save') ?> + <?= /* I18N: A button label. */ + I18N::translate('save') ?> + </button> + <a class="btn btn-secondary" href="<?= e($individual->url()) ?>"> + <?= FontAwesome::decorativeIcon('cancel') ?> + <?= /* I18N: A button label. */ + I18N::translate('cancel') ?> + </a> + </div> + </div> +</form> |
