Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -78,11 +78,11 @@ def calculate_needs_and_norm(ilce_values, brans_values):
|
|
78 |
with gr.Blocks() as demo:
|
79 |
with gr.Tab("Antalya Norm Fazlası Öğretmenler"):
|
80 |
ilce_choices = sorted(df_norm['İlçe Adı'].dropna().astype(str).unique().tolist())
|
81 |
-
ilce_multiselect = gr.Dropdown(choices=["Tüm İlçeler"] + ilce_choices, label="
|
82 |
-
brans_multiselect = gr.Dropdown(choices=sorted(df_norm['Branşı'].dropna().unique().tolist()), label="
|
83 |
aciklama_choices = sorted(df_norm['Açıklamalar'].dropna().unique().tolist())
|
84 |
aciklama_multiselect = gr.Dropdown(choices=aciklama_choices, label="Mazaretliler", multiselect=True)
|
85 |
-
include_empty_aciklama = gr.Checkbox(label="Mazaretsizleri de ekle")
|
86 |
|
87 |
# Action button
|
88 |
filter_button = gr.Button("Listele")
|
|
|
78 |
with gr.Blocks() as demo:
|
79 |
with gr.Tab("Antalya Norm Fazlası Öğretmenler"):
|
80 |
ilce_choices = sorted(df_norm['İlçe Adı'].dropna().astype(str).unique().tolist())
|
81 |
+
ilce_multiselect = gr.Dropdown(choices=["Tüm İlçeler"] + ilce_choices, label="İlçe Adı", multiselect=True)
|
82 |
+
brans_multiselect = gr.Dropdown(choices=sorted(df_norm['Branşı'].dropna().unique().tolist()), label="Branş", multiselect=True)
|
83 |
aciklama_choices = sorted(df_norm['Açıklamalar'].dropna().unique().tolist())
|
84 |
aciklama_multiselect = gr.Dropdown(choices=aciklama_choices, label="Mazaretliler", multiselect=True)
|
85 |
+
include_empty_aciklama = gr.Checkbox(label="Mazaretsizleri de listeye ekle")
|
86 |
|
87 |
# Action button
|
88 |
filter_button = gr.Button("Listele")
|