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.
 
 
 
 
 

63 lines
1.7 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
  20. %th Appeal status
  21. %th Appeal decision
  22. %th Applications
  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= download_button('inlink-appeals.csv')
  34. %table#applications
  35. %thead
  36. %tr
  37. %th Authority
  38. %th Authority reference
  39. %th Authority decision
  40. %th Address
  41. %th Appeal status
  42. %th Appeal decision
  43. %tbody
  44. - apps.each do |app|
  45. %tr
  46. %td.nowrap
  47. %a{ href: authority_url(app['authority_name']) }
  48. = app['authority_name']
  49. %td
  50. %a{ href: app['info_url']}
  51. = app['council_reference']
  52. %td.nowrap= short_date(app['date_decision'])
  53. %td= app['address']
  54. %td= cleanup(app['appeal_status'])
  55. %td= cleanup(app['appeal_decision'])