|
|
|
@ -132,7 +132,7 @@ def load_input(val):
|
|
|
|
|
|
|
|
|
|
def show_meet_table_data(): |
|
|
|
|
global persons |
|
|
|
|
html = "" |
|
|
|
|
html = "Всего участников: " + str(len(persons)) + "<br/>" |
|
|
|
|
html += "<table border = 1>" |
|
|
|
|
# Первая строка |
|
|
|
|
html += "<tr>" |
|
|
|
@ -179,7 +179,7 @@ def print_result_table():
|
|
|
|
|
html += "<tr>" |
|
|
|
|
html += "<td>" + str(table_names[t.id]) + "</td>" |
|
|
|
|
if len(t.person_set): |
|
|
|
|
html += "<td>" + str(t.person_set) + "</td>" |
|
|
|
|
html += "<td>" + str(t.person_set).replace("{","").replace("}","") + "</td>" |
|
|
|
|
else: |
|
|
|
|
html += "<td></td>" |
|
|
|
|
html += "</tr>" |
|
|
|
@ -318,6 +318,7 @@ def table_distrib_load(event):
|
|
|
|
|
load_data(event) |
|
|
|
|
load_input_table(document["result_table_txt"].value) |
|
|
|
|
fill_persons() |
|
|
|
|
print_result_table() |
|
|
|
|
document["output_data"].value = get_result() |
|
|
|
|
|
|
|
|
|
def load_to_start_data(event): |
|
|
|
|