summaryrefslogtreecommitdiff
path: root/resources/views/edit/link-child-to-family.phtml
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2018-10-12 11:04:12 +0100
committerGreg Roach <fisharebest@webtrees.net>2018-10-12 11:15:32 +0100
commitdd6b2bfcc550270bb6d6778e11576148f71e4330 (patch)
tree9462a8eabe1103a0e79c18c521b6b4858a3fb2dc /resources/views/edit/link-child-to-family.phtml
parentafb591d7c8a3029b0ca03e6d185cacca3c22eb5f (diff)
downloadwebtrees-dd6b2bfcc550270bb6d6778e11576148f71e4330.tar.gz
webtrees-dd6b2bfcc550270bb6d6778e11576148f71e4330.tar.bz2
webtrees-dd6b2bfcc550270bb6d6778e11576148f71e4330.zip
Use .phtml extension for template files
Diffstat (limited to 'resources/views/edit/link-child-to-family.phtml')
-rw-r--r--resources/views/edit/link-child-to-family.phtml47
1 files changed, 47 insertions, 0 deletions
diff --git a/resources/views/edit/link-child-to-family.phtml b/resources/views/edit/link-child-to-family.phtml
new file mode 100644
index 0000000000..452a0961ad
--- /dev/null
+++ b/resources/views/edit/link-child-to-family.phtml
@@ -0,0 +1,47 @@
+<?php use Fisharebest\Webtrees\Bootstrap4; ?>
+<?php use Fisharebest\Webtrees\FontAwesome; ?>
+<?php use Fisharebest\Webtrees\Functions\FunctionsEdit; ?>
+<?php use Fisharebest\Webtrees\GedcomCode\GedcomCodePedi; ?>
+<?php use Fisharebest\Webtrees\I18N; ?>
+
+<h2 class="wt-page-title"><?= $title ?></h2>
+
+<form class="wt-page-content" method="post">
+ <?= csrf_field() ?>
+
+ <div class="row form-group">
+ <label class="col-sm-3 col-form-label" for="famid">
+ <?= I18N::translate('Family') ?>
+ </label>
+ <div class="col-sm-9">
+ <?= FunctionsEdit::formControlFamily($tree, null, ['id' => 'famid', 'name' => 'famid']) ?>
+ </div>
+ </div>
+
+ <div class="row form-group">
+ <label class="col-sm-3 col-form-label" for="PEDI">
+ <?= I18N::translate('Pedigree') ?>
+ </label>
+ <div class="col-sm-9">
+ <?= Bootstrap4::select(GedcomCodePedi::getValues($individual), '', ['id' => 'PEDI', 'name' => 'PEDI']) ?>
+ <p class="small text-muted">
+ <?= I18N::translate('A child may have more than one set of parents. The relationship between the child and the parents can be biological, legal, or based on local culture and tradition. If no pedigree is specified, then a biological relationship will be assumed.') ?>
+ </p>
+ </div>
+ </div>
+
+ <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>