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.
 
 
 
 
 

22 lines
509 B

  1. %h2 Latest decisions
  2. %table
  3. %thead
  4. %tr
  5. %th Authority
  6. %th Reference
  7. %th Date
  8. %th Address
  9. %th Decision
  10. %tbody
  11. - decisions.each do |app|
  12. %tr
  13. %td
  14. %a{ :href => "/authorities/#{ slug(app['authority_name'])}" }
  15. = app['authority_name']
  16. %td
  17. %a{ href: app['info_url']}
  18. = app['council_reference']
  19. %td= short_date(app['date_decision'])
  20. %td= app['address']
  21. %td= app['decision']