Browse Source

В title теперь могут быть имена с пробелами

master
parent
commit
caebcb91ab
  1. 4
      table_distributor.html

4
table_distributor.html

@ -170,12 +170,12 @@ def show_meet_table_data():
html += "<tr>"
html += "<td></td>"
for p in persons:
html += "<th" + " title="+ p.name + ">" + str(abs(p.beig_id)) + "</th>"
html += "<th" + " title='"+ p.name + "'>" + str(abs(p.beig_id)) + "</th>"
html += "</tr>"
# Остальные строки
for p in persons:
html += "<tr>"
html += "<th" + " title="+ p.name + ">" + str(abs(p.beig_id)) + "</th>"
html += "<th" + " title='"+ p.name + "'>" + str(abs(p.beig_id)) + "</th>"
for ip in persons:
if abs(p.beig_id) in ip.meet_set:
html += "<td bgcolor='red'></td>"

Loading…
Cancel
Save