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.
 
 
 
 
 

66 lines
1.8 KiB

  1. %h1 Appeals
  2. .warning
  3. %p
  4. The applicant has the right to appeal against a council's decision to refuse planning permission. An independent planning inspector reviews the case and decides whether to uphold the original decision or to overturn it.
  5. %p
  6. Appeals are decided by the
  7. %a( href = "https://www.gov.uk/government/organisations/planning-inspectorate")<
  8. Planning Inspectorate for England and Wales,
  9. the
  10. %a( href = "https://www.dpea.scotland.gov.uk")<
  11. Planning and Environmental Appeals Division of the Scottish government,
  12. and the
  13. %a( href = "https://www.pacni.gov.uk")<
  14. Planning Appeals Commission for Northern Ireland.
  15. %h2 Summary
  16. %table#summary
  17. %thead
  18. %tr
  19. %th Authority name
  20. %th Appeal status
  21. %th Appeal decision
  22. %th Applications appealed
  23. %tbody
  24. - summary.each do |row|
  25. %tr
  26. %td.nowrap
  27. %a{ href: authority_url(row['authority_name']) }
  28. = row['authority_name']
  29. %td= cleanup(row['appeal_status'])
  30. %td= cleanup(row['appeal_decision'])
  31. %td.right= row['applications']
  32. %h2 Appealed applications
  33. %p
  34. - csv_fn = 'inlink-appeals.csv'
  35. %a.button{ :href => csv_fn, :download => csv_fn }
  36. Download CSV data
  37. %table#applications
  38. %thead
  39. %tr
  40. %th Authority
  41. %th Reference
  42. %th Council decision
  43. %th Address
  44. %th Appeal status
  45. %th Appeal decision
  46. %tbody
  47. - apps.each do |app|
  48. %tr
  49. %td.nowrap
  50. %a{ href: authority_url(app['authority_name']) }
  51. = app['authority_name']
  52. %td
  53. %a{ href: app['info_url']}
  54. = app['council_reference']
  55. %td.nowrap= short_date(app['date_decision'])
  56. %td= app['address']
  57. %td= cleanup(app['appeal_status'])
  58. %td= cleanup(app['appeal_decision'])