-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.py
77 lines (58 loc) · 1.93 KB
/
main.py
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
import dash_html_components as html
from app import app, server
from app.audits import callback
from app.registrations import callback
from app.onboarding_steps_trend import callback
from app.audits import layout as audits_layout
from app.registrations import layout as registrations_layout
from app.onboarding_steps import layout as onboarding_steps_layout
from app.onboarding_steps_trend import layout as onboarding_steps_trend_layout
from app.ages import layout as ages_layout
from app.gender import layout as gender_layout
from app.source_channels import layout as source_channels_layout
from app.languages import layout as languages_layout
from app.projects import layout as projects_layout
from app.js_piscine import layout as js_piscine_layout
app.layout = html.Div(children=[
html.H1(children='01 Platform analytics'),
html.Div([
onboarding_steps_layout.layout
], className="row"),
html.Div([
js_piscine_layout.layout
], className="row"),
html.Div([
html.Div([
audits_layout.layout,
], className="six columns"),
html.Div([
registrations_layout.layout
], className="six columns"),
], className="row"),
html.Div([
html.Div([
ages_layout.layout,
], className="six columns"),
html.Div([
gender_layout.layout
], className="six columns"),
], className="row"),
html.Div([
html.Div([
source_channels_layout.layout
], className="six columns"),
html.Div([
languages_layout.layout
], className="six columns"),
], className="row"),
html.Div([
html.Div([
onboarding_steps_trend_layout.layout
], className="six columns"),
html.Div([
projects_layout.layout
], className="six columns"),
], className="row"),
])
if __name__ == '__main__':
app.run_server(debug=True)