Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1.  
  2. <div id="seturl-form" title="Set the URL">
  3. <form>
  4. <fieldset>
  5. <label for="setUrl">URL</label>
  6. <input type="text" name="setUrl" id="setUrl" value="abc" class="text ui-widget-content ui-corner-all" />
  7. </fieldset>
  8. </form>
  9. </div>
  10.  
  11.  
  12. <?php if ($this->propertyRowset == null) : ?>
  13. <p>There are currently no properties awaiting initial approval.</p>
  14. <?php endif ?>
  15.  
  16.  
  17. <?php if ($this->propertyRowset) : ?>
  18. <table>
  19. <tr>
  20. <th>Property Id</th>
  21. <th>Type</th>
  22. <th>Requested Location</th>
  23. <th>Created On</th>
  24. <th>Last Updated</th>
  25. <th>URL</th>
  26. <th>Approve Property</th>
  27. </tr>
  28. <?php
  29. foreach ($this->propertyRowset as $row) {
  30. ?>
  31. <tr>
  32. <td><?php echo $row->idProperty ?></td>
  33. <td><?php echo $row->idPropertyType ?></td>
  34. <td></td>
  35. <td><?php echo $row->added ?></td>
  36. <td><?php echo $row->updated ?></td>
  37. <td><?php echo $row->urlName ?><a class="setUrl" href="#">set url</a></td>
  38. <td>[approve]</td>
  39. </tr>
  40. <?php
  41. }
  42. ?>
  43. </table>
  44. <?php endif ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement