Planning applications tracker for InLinkUK from BT kiosks. https://kiosks.adrianshort.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
462 B

  1. %h1 New applications
  2. %table#applications
  3. %thead
  4. %tr
  5. %th Authority
  6. %th Reference
  7. %th Received
  8. %th Address
  9. %tbody
  10. - apps.each do |app|
  11. %tr
  12. %td.nowrap
  13. %a{ href: authority_url(app['authority_name']) }
  14. = app['authority_name']
  15. %td
  16. %a{ href: app['info_url']}
  17. = app['council_reference']
  18. %td.nowrap= short_date(app['date_received'])
  19. %td= app['address']