|
21 | 21 | <th><?= $this->Paginator->sort('address') ?></th> |
22 | 22 | <th><?= $this->Paginator->sort('formatted_address') ?></th> |
23 | 23 | <th><?= $this->Paginator->sort('country') ?></th> |
24 | | - <th><?= $this->Paginator->sort('lat') ?></th> |
25 | | - <th><?= $this->Paginator->sort('lng') ?></th> |
| 24 | + <th><?= __('Coordinates') ?></th> |
26 | 25 | <th class="actions"><?= __('Actions') ?></th> |
27 | 26 | </tr> |
28 | 27 | </thead> |
|
32 | 31 | <td><?= h($geocodedAddress->address) ?></td> |
33 | 32 | <td><?= h($geocodedAddress->formatted_address) ?></td> |
34 | 33 | <td><?= h($geocodedAddress->country) ?></td> |
35 | | - <td><?= $this->Number->format($geocodedAddress->lat) ?></td> |
36 | | - <td><?= $this->Number->format($geocodedAddress->lng) ?></td> |
| 34 | + <td><?= $geocodedAddress->lat && $geocodedAddress->lng ? $this->Number->format($geocodedAddress->lat) . ' / ' . $this->Number->format($geocodedAddress->lng) : '-' ?></td> |
37 | 35 | <td class="actions"> |
38 | | - <?= $this->Html->link(Plugin::isLoaded('Tools') ? $this->Format->icon('view') : __('View'), ['action' => 'view', $geocodedAddress->id], ['escapeTitle' => false]); ?> |
39 | | - <?= $this->Html->link(Plugin::isLoaded('Tools') ? $this->Format->icon('edit') : __('Edit'), ['action' => 'edit', $geocodedAddress->id], ['escapeTitle' => false]); ?> |
40 | | - <?= $this->Form->postLink(Plugin::isLoaded('Tools') ? $this->Format->icon('delete') : __('Delete'), ['action' => 'delete', $geocodedAddress->id], ['escapeTitle' => false, 'confirm' => __('Are you sure you want to delete # {0}?', $geocodedAddress->id)]); ?> |
| 36 | + <?= $this->Html->link(Plugin::isLoaded('Tools') ? $this->Icon->render('view') : __('View'), ['action' => 'view', $geocodedAddress->id], ['escapeTitle' => false]); ?> |
| 37 | + <?= $this->Html->link(Plugin::isLoaded('Tools') ? $this->Icon->render('edit') : __('Edit'), ['action' => 'edit', $geocodedAddress->id], ['escapeTitle' => false]); ?> |
| 38 | + <?= $this->Form->postLink(Plugin::isLoaded('Tools') ? $this->Icon->render('delete') : __('Delete'), ['action' => 'delete', $geocodedAddress->id], ['escapeTitle' => false, 'confirm' => __('Are you sure you want to delete # {0}?', $geocodedAddress->id)]); ?> |
41 | 39 | </td> |
42 | 40 | </tr> |
43 | 41 | <?php endforeach; ?> |
|
0 commit comments