diff --git a/src/view/modals.py b/src/view/modals.py index dce28c9..4f3bff2 100644 --- a/src/view/modals.py +++ b/src/view/modals.py @@ -130,4 +130,11 @@ def do_chosen_examples(example_list, entry): options.append(h("label.checkable", {"attrs": {"for": id_}}, text)) options.append(h("br", {}, [])) + if can_choose_cluster: + options.append(h("hr", {}, [])) + options.append(h("div.flex.five.example-component", {}, [ + h("div.two-fifth", {}, "NOT IMPLEMENTED"), + h("div.three-fifth", {}, + show_toggle_cluster_buttons(entry.senses[sense_of_first_example], example_list[0]))])) + return modal_template(options, "Examples picker", message.DoChosenExamples(example_list))