Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -202,11 +202,11 @@ with gr.Blocks() as demo:
|
|
202 |
textboxes_left = [gr.Textbox(label=oral_health_assessment_form[i], value="", interactive=True) for i in range(3, 9)] # Age, Gender, Chief complaint, Medical history, Dental history, Clinical Findings
|
203 |
with gr.Column():
|
204 |
textboxes_right = [
|
205 |
-
gr.Dropdown(choices=["
|
206 |
gr.Dropdown(choices=["+", "++", "+++"], label="Calculus", interactive=True),
|
207 |
-
gr.Dropdown(choices=[
|
208 |
]
|
209 |
-
treatment_plan_dropdown = gr.Dropdown(choices=["Scaling", "Filling", "Pulp therapy/RCT", "Extraction", "Medication"
|
210 |
|
211 |
oha_output = gr.Textbox(label="OHA Output", value="", interactive=False)
|
212 |
save_button = gr.Button("Save to Supabase", elem_id="save_button", interactive=True)
|
|
|
202 |
textboxes_left = [gr.Textbox(label=oral_health_assessment_form[i], value="", interactive=True) for i in range(3, 9)] # Age, Gender, Chief complaint, Medical history, Dental history, Clinical Findings
|
203 |
with gr.Column():
|
204 |
textboxes_right = [
|
205 |
+
gr.Dropdown(choices=["None", "Oral Medicine and Radiology", "Periodontics", "Oral Surgery", "Conservative and Endodontics", "Prosthodontics", "Pedodontics", "Orthodontics"], label="Referred to", interactive=True),
|
206 |
gr.Dropdown(choices=["+", "++", "+++"], label="Calculus", interactive=True),
|
207 |
+
gr.Dropdown(choices=[ "+", "++", "+++"], label="Stains", interactive=True),
|
208 |
]
|
209 |
+
treatment_plan_dropdown = gr.Dropdown(choices=["Scaling", "Filling", "Pulp therapy/RCT", "Extraction", "Medication"], label="Treatment plan", interactive=True)
|
210 |
|
211 |
oha_output = gr.Textbox(label="OHA Output", value="", interactive=False)
|
212 |
save_button = gr.Button("Save to Supabase", elem_id="save_button", interactive=True)
|