Lines Matching refs:note
101 <?php foreach ($notes as $note) : ?>
102 …<tr class="<?= $note->isPendingAddition() ? 'wt-new' : '' ?> <?= $note->isPendingDeletion() ? 'wt-…
104 <td data-sort="<?= e($note->sortName()) ?>">
105 <a href="<?= e($note->url()) ?>">
106 <?= $note->fullName() ?>
111 <td class="text-center" data-sort="<?= $count_individuals[$note->xref()] ?? 0 ?>">
112 <?= I18N::number($count_individuals[$note->xref()] ?? 0) ?>
116 <td class="text-center" data-sort="<?= $count_families[$note->xref()] ?? 0 ?>">
117 <?= I18N::number($count_families[$note->xref()] ?? 0) ?>
121 <td class="text-center" data-sort="<?= $count_media[$note->xref()] ?? 0 ?>">
122 <?= I18N::number($count_media[$note->xref()] ?? 0) ?>
126 <td class="text-center" data-sort="<?= $count_sources[$note->xref()] ?? 0 ?>">
127 <?= I18N::number($count_sources[$note->xref()] ?? 0) ?>
131 <td data-sort="<?= $note->lastChangeTimestamp()->timestamp() ?>">
132 … <?= view('components/datetime', ['timestamp' => $note->lastChangeTimestamp()]) ?>