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.
 
 
 
 
 

67 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
  20. %th Status
  21. %th Decision
  22. %th Appeal status
  23. %th Appeal decision
  24. %th Applications
  25. %tbody
  26. - summary.each do |row|
  27. %tr
  28. %td.nowrap
  29. %a{ href: authority_url(row['authority_name']) }
  30. = row['authority_name']
  31. %td= cleanup(row['status'])
  32. %td= cleanup(row['decision'])
  33. %td= cleanup(row['appeal_status'])
  34. %td= cleanup(row['appeal_decision'])
  35. %td.right= row['applications']
  36. %h2 Appealed applications
  37. %p= download_button('kiosks-appeals.csv')
  38. %table#applications
  39. %thead
  40. %tr
  41. %th Authority
  42. %th Authority reference
  43. %th Authority decision
  44. %th Address
  45. %th Appeal status
  46. %th Appeal decision
  47. %tbody
  48. - apps.each do |app|
  49. %tr
  50. %td.nowrap
  51. %a{ href: authority_url(app['authority_name']) }
  52. = app['authority_name']
  53. %td
  54. %a{ href: app['info_url']}
  55. = app['council_reference']
  56. %td.nowrap= short_date(app['date_decision'])
  57. %td= app['address']
  58. %td= cleanup(app['appeal_status'])
  59. %td= cleanup(app['appeal_decision'])