summaryrefslogtreecommitdiff
path: root/resources/views/admin
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2022-12-12 21:18:29 +0000
committerGreg Roach <greg@subaqua.co.uk>2022-12-12 21:24:31 +0000
commit3b2b4f4a7b8432a126008c761ad3119ae4788c4b (patch)
treeafeda3e37079105f1e18541a683fbf8d7ffe9b56 /resources/views/admin
parent8ac43e6cc9fcf8461c0274bd2f0c4c4009b2001c (diff)
downloadwebtrees-3b2b4f4a7b8432a126008c761ad3119ae4788c4b.tar.gz
webtrees-3b2b4f4a7b8432a126008c761ad3119ae4788c4b.tar.bz2
webtrees-3b2b4f4a7b8432a126008c761ad3119ae4788c4b.zip
Fix: #4655 - residence facts take a value in GEDCOM 7
Diffstat (limited to 'resources/views/admin')
-rw-r--r--resources/views/admin/tags.phtml20
1 files changed, 18 insertions, 2 deletions
diff --git a/resources/views/admin/tags.phtml b/resources/views/admin/tags.phtml
index 1931591655..c7ac246dec 100644
--- a/resources/views/admin/tags.phtml
+++ b/resources/views/admin/tags.phtml
@@ -980,7 +980,7 @@ use Fisharebest\Webtrees\Site;
</td>
<td>
- <?= view('components/checkbox', ['id' => 'custom_time_tags', 'name' => 'custom_fam_fact', 'label' => I18N::translate('show'), 'checked' => $custom_fam_fact]) ?>
+ <?= view('components/checkbox', ['id' => 'custom_fam_fact', 'name' => 'custom_fam_fact', 'label' => I18N::translate('show'), 'checked' => $custom_fam_fact]) ?>
</td>
</tr>
@@ -994,7 +994,23 @@ use Fisharebest\Webtrees\Site;
</td>
<td>
- <?= view('components/checkbox', ['id' => 'custom_time_tags', 'name' => 'custom_fam_nchi', 'label' => I18N::translate('show'), 'checked' => $custom_fam_nchi]) ?>
+ <?= view('components/checkbox', ['id' => 'custom_fam_nchi', 'name' => 'custom_fam_nchi', 'label' => I18N::translate('show'), 'checked' => $custom_fam_nchi]) ?>
+ </td>
+ </tr>
+
+ <tr>
+ <td>
+ <?= I18N::translate('Residence') ?>
+ </td>
+
+ <td>
+ <code dir="ltr">FAM:RESI …</code>
+ <br>
+ <code dir="ltr">INDI:RESI …</code>
+ </td>
+
+ <td>
+ <?= view('components/checkbox', ['id' => 'custom_resi_value', 'name' => 'custom_resi_value', 'label' => I18N::translate('show'), 'checked' => $custom_resi_value]) ?>
</td>
</tr>
</tbody>