Planning applications tracker for InLinkUK from BT kiosks. https://kiosks.adrianshort.org/
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

index.haml 830 B

5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
1234567891011121314151617181920212223242526272829
  1. %h1 Summary
  2. %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.
  3. %p
  4. - csv_fn = 'inlink-summary.csv'
  5. %a.button{ :href => csv_fn, :download => csv_fn }
  6. Download summary CSV data
  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']