-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.py
More file actions
38 lines (30 loc) · 830 Bytes
/
Copy pathapp.py
File metadata and controls
38 lines (30 loc) · 830 Bytes
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
import streamlit as st
st.set_page_config(
page_title="eDiscovery Toolkit",
page_icon="\u2696",
layout="wide",
)
st.title("eDiscovery Toolkit")
st.caption("Local-first QC tools for eDiscovery professionals")
tab_litready, tab_intake, tab_search, tab_production, tab_privlog = st.tabs([
"Litigation Readiness",
"Intake QC",
"Search Term Workbench",
"Production QC",
"Privilege Log QC",
])
with tab_litready:
from ui.module_e import render as render_e
render_e()
with tab_intake:
from ui.module_a import render as render_a
render_a()
with tab_search:
from ui.module_d import render as render_d
render_d()
with tab_production:
from ui.module_b import render as render_b
render_b()
with tab_privlog:
from ui.module_c import render as render_c
render_c()