create_info();
create_table(data.idea_description);
create_polarion_link(data.link);
function my_warning(event) {
let selected = $('#finish').find(":selected").val();
if (selected == "yes") {
let text = "As soon as you select 'YES' that means that you are finished with the project and can't access it from the Worklist anymore!";
if (confirm(text) == false) {
event.preventDefault();
}
}
}