Tracking Start: May 1, 2026 • Purchases Verified: July 3, 2026
Double The District Initiative
Routes 381 • 382 • 383 • Washington DC Only
Bars • Restaurants • Hotels
0 of 0 target accounts purchased0%
Total Accounts
0
DC targets
Purchased
0
converted
Route 381
0
accounts
Route 382
0
accounts
Route 383
0
accounts
VIP Program
0
opted in
Total Cases
0
purchased
TARGET ACCOUNTS DC ONLY
🔍
Route
Acct #
Account Name
Channel
VIP Program
Preorder
Cases
Trans. Date
Route Day
Contact
Notes
ADD ACCOUNT
✓ YES
NO
★ YES
NO
✓ YES
NO
CLOUD SYNC
Connect a Supabase project so every rep sees the same live board. Edits from any phone or laptop sync to everyone within seconds. Leave blank to keep data on this device only.
create table if not exists dtd_accounts (
id text primary key,
route text not null,
account_num text default '',
account text not null,
channel text not null,
city text default 'Washington',
state text default 'DC',
vip_program text default '',
vip text default 'No',
preorder text default 'No',
cases integer default 0,
date text default '',
route_day text default '',
contact_name text default '',
contact_phone text default '',
notes text default '',
sold boolean default false,
updated_at timestamptz default now()
);
alter table dtd_accounts enable row level security;
create policy "dtd open access" on dtd_accounts
for all using (true) with check (true);
alter publication supabase_realtime add table dtd_accounts;
After connecting, if the cloud table is empty you will be asked to publish this device's data as the starting board.