File size: 794 Bytes
0eddb61
fc85e7c
0eddb61
 
ec819d9
0eddb61
f64836c
0eddb61
 
 
 
f64836c
0eddb61
 
 
 
f64836c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import gradio as gr
from utils_config import get_custom_config_dropdowns

def create_followup_section():
    followup_config = get_custom_config_dropdowns("config_followup.json")
    followup_config = followup_config["Event follow-up"]
    gr.Markdown("Please tell us what you did with the animal.", label="description")
    with gr.Row(): 
        for key, val in followup_config.items():
            followup_label = key
            if "Options" in val.keys(): 
                gr.Dropdown(choices=val["Options"], label=followup_label, visible=True, elem_id="followup")
    with gr.Row(): 
        for key, val in followup_config.items():
            followup_label = key
            if "Open" in val.keys(): 
                gr.Textbox(label=followup_label, visible=True, elem_id="followup")