-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (118 loc) · 4.62 KB
/
index.html
File metadata and controls
129 lines (118 loc) · 4.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Campus FPM Base</title>
<link rel="stylesheet" href="/static/styles.css" />
</head>
<body>
<div class="shell">
<aside class="sidebar">
<div>
<p class="eyebrow">Localhost:3200</p>
<h1>Campus FPM Base</h1>
<p class="muted">
Local-first financial planning platform scaffold for campus budgeting,
forecasting, workflow, and reporting.
</p>
</div>
<nav>
<a href="#overview">Overview</a>
<a href="#summary">Summary</a>
<a href="#line-items">Budget lines</a>
<a href="#drivers">Drivers</a>
<a href="#workflow">Workflow</a>
<a href="#integrations">Integrations</a>
</nav>
<section class="panel compact">
<h2>Scenario controls</h2>
<label for="scenarioSelect">Scenario</label>
<select id="scenarioSelect"></select>
<button id="forecastButton" class="primary">Run forecast</button>
<button id="refreshButton">Refresh</button>
</section>
</aside>
<main class="content">
<section id="overview" class="hero panel">
<div>
<p class="eyebrow">Architecture base</p>
<h2>Driver graph + scenario ledger</h2>
<p>
This base uses an API-first planning engine with dimensions, scenarios,
workflow states, audit logs, and an extensible forecast runner.
</p>
</div>
<div class="hero-actions">
<button id="newScenarioButton" class="primary">Create scenario</button>
<button id="addLineButton">Add line item</button>
</div>
</section>
<section id="summary" class="grid three"></section>
<section class="grid two">
<section class="panel">
<h2>Department position</h2>
<div id="departmentTable"></div>
</section>
<section class="panel">
<h2>Account position</h2>
<div id="accountTable"></div>
</section>
</section>
<section id="line-items" class="panel">
<div class="section-header">
<h2>Budget lines</h2>
<span id="lineItemCount" class="tag"></span>
</div>
<div id="lineItemsTable"></div>
</section>
<section id="drivers" class="panel">
<h2>Planning drivers</h2>
<div id="driversTable"></div>
</section>
<section id="workflow" class="panel">
<h2>Approval workflow</h2>
<div id="workflowTable"></div>
</section>
<section id="integrations" class="panel">
<h2>Integration registry</h2>
<div id="integrationsTable"></div>
</section>
<section class="panel">
<h2>Capability map</h2>
<div id="capabilityMap"></div>
</section>
</main>
</div>
<dialog id="scenarioDialog">
<form id="scenarioForm" method="dialog">
<h2>Create scenario</h2>
<label>Name <input name="name" required minlength="3" value="FY28 Operating Plan" /></label>
<label>Version <input name="version" required value="v1" /></label>
<label>Start period <input name="start_period" required value="2027-07" pattern="\d{4}-\d{2}" /></label>
<label>End period <input name="end_period" required value="2027-12" pattern="\d{4}-\d{2}" /></label>
<menu>
<button value="cancel">Cancel</button>
<button value="submit" class="primary">Save</button>
</menu>
</form>
</dialog>
<dialog id="lineDialog">
<form id="lineForm" method="dialog">
<h2>Add line item</h2>
<label>Department <input name="department_code" required value="SCI" /></label>
<label>Fund <input name="fund_code" required value="GEN" /></label>
<label>Account <input name="account_code" required value="SALARY" /></label>
<label>Period <input name="period" required value="2026-08" pattern="\d{4}-\d{2}" /></label>
<label>Amount <input name="amount" required type="number" step="0.01" value="-10000" /></label>
<label>Notes <input name="notes" value="Added from UI" /></label>
<menu>
<button value="cancel">Cancel</button>
<button value="submit" class="primary">Save</button>
</menu>
</form>
</dialog>
<div id="toast" class="toast hidden"></div>
<script src="/static/app.js" type="module"></script>
</body>
</html>