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.
 
 
 
 
 

31 lines
822 B

  1. %h1 Summary
  2. %p
  3. Last updated:
  4. = last_updated.strftime("%d %B %Y at %l:%M%P")
  5. %p.warning There are typically two applications per kiosk: one for full planning permission or telecoms prior approval, and one for advertisement consent. So the number of kiosks applied for is half the number of applications.
  6. %p= download_button('kiosks-summary.csv')
  7. %table#summary
  8. %thead
  9. %tr
  10. %th Authority
  11. %th Status
  12. %th Decision
  13. %th  
  14. %th  
  15. %th Applications
  16. %tbody
  17. - summary.each do |row|
  18. %tr
  19. %td.nowrap
  20. %a{ href: authority_url(row['authority_name']) }
  21. = row['authority_name']
  22. %td= row['status']
  23. %td= row['decision']
  24. %td= cleanup(row['appeal_status'])
  25. %td= cleanup(row['appeal_decision'])
  26. %td.right= row['applications']