SOURCE OF TRUTH
Homewood, AL
Provenance for every figure on this page. Click any vote, dollar amount, or meeting
card to view the underlying source — agenda PDF, official minutes, or the city's CMS.
Platform
GenericCMS
Public meeting publisher
Adapter
GenericCMSAdapter
src/docket/adapters/
Records
0 meetings
indexed
By the numbers
Meetings (lifetime)
1,088
Since 2016
show SQL
SELECT count(*) FROM meetings WHERE municipality_id = 4
Agenda items YTD
0
show SQL
SELECT count(*) FROM agenda_items ai
JOIN meetings m ON m.id = ai.meeting_id
WHERE m.municipality_id = 4
AND m.meeting_date >= date_trunc('year', now())
Votes YTD
0
show SQL
SELECT count(*) FROM votes v
JOIN meetings m ON m.id = v.meeting_id
WHERE m.municipality_id = 4
AND m.meeting_date >= date_trunc('year', now())
Dollars (pending / settled)
$0.0M / $0.0M
show SQL
SELECT sum(dollars_amount) FILTER (WHERE minutes_adopted_at IS NULL),
sum(dollars_amount) FILTER (WHERE minutes_adopted_at IS NOT NULL)
FROM agenda_items ai
JOIN meetings m ON m.id = ai.meeting_id
WHERE m.municipality_id = 4