Ad index: longitude and latitude fields
authorGustavo Martin Morcuende <gu.martinm@gmail.com>
Sun, 3 Jun 2012 16:52:32 +0000 (18:52 +0200)
committerGustavo Martin Morcuende <gu.martinm@gmail.com>
Sun, 3 Jun 2012 16:52:32 +0000 (18:52 +0200)
apps/companyfront/modules/ad/templates/_list.php

index 84322dc..5d29d37 100644 (file)
@@ -4,8 +4,10 @@
          <th scope="col" class="rounded-company"><?php echo __('Phone Image') ?></th>
          <th scope="col" class="rounded"><?php echo __('Company Category') ?></th>
       <th scope="col" class="rounded"><?php echo __('Ad Name') ?></th>
+      <th scope="col" class="rounded"><?php echo __('Longitude') ?></th>
+      <th scope="col" class="rounded"><?php echo __('Latitude') ?></th>
       <th scope="col" class="rounded"><?php echo __('Edit') ?></th>
-      <th scope="col" class="rounded-q4"><?php echo __('Remove') ?></th>
+      <th scope="col" class="rounded-q4"></th>
     </tr>
   </thead>
   <tfoot>
@@ -24,6 +26,8 @@
         <?php endif; ?>
       </td>
       <td><?php echo $ad->getAdName() ?></td>
+      <td><?php echo $ad->getAd()->getLongitude() ?></td>
+      <td><?php echo $ad->getAd()->getLatitude() ?></td>
          <td><a href="<?php echo url_for('ad/edit?id='.$ad->getAd()->getId().'&page='.$page) ?>"><img src="/images/pencil_add.png" alt="" title="" border="0" /></a></td>
       <td><?php echo link_to('<img src="/images/inadminpanel/images/trash.png" alt="" title="" border="0" />', 'ad/delete?id='.$ad->getAd()->getId(), array('method' => 'delete', 'confirm' => 'Are you sure?')) ?></td>