diff options
author | Gergely Csatari <gergely.csatari@nokia.com> | 2023-10-26 10:33:28 +0300 |
---|---|---|
committer | Gergely Csatari <gergely.csatari@nokia.com> | 2023-10-26 10:34:28 +0300 |
commit | 2ec0d7b9f5c1354977b821c6b06c24a3ffa13142 (patch) | |
tree | 6e449d92ddfc880ed007e9d8a8f25bda8fc7cb0f /src/templates/base/config_bundle/steps/define_software.html | |
parent | 0d3dd290aa6e7f39e7b0b3cbe448b6622f924240 (diff) |
that the development continues in GitHub
Change-Id: I25c58a679dbf92b2367d826429b7cda936bf9f0e
Signed-off-by: Gergely Csatari <gergely.csatari@nokia.com>
Diffstat (limited to 'src/templates/base/config_bundle/steps/define_software.html')
-rw-r--r-- | src/templates/base/config_bundle/steps/define_software.html | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/src/templates/base/config_bundle/steps/define_software.html b/src/templates/base/config_bundle/steps/define_software.html deleted file mode 100644 index b61cb1c..0000000 --- a/src/templates/base/config_bundle/steps/define_software.html +++ /dev/null @@ -1,44 +0,0 @@ -{% extends "config_bundle/steps/table_formset.html" %} - -{% load bootstrap4 %} - -{% block table %} - <thead> - <tr> - <th>Device</th> - <th>Image</th> - <th>HeadNode</th> - </tr> - </thead> - <tbody> -{% for form in formset %} - <tr> - <td>{% bootstrap_field form.host_name show_label=False %}</td> - <td>{% bootstrap_field form.image show_label=False %}</td> - <td class="table_hidden_input_parent"> - <input id="radio_{{forloop.counter}}" class="my_radio" type="radio" name="headnode" value="{{forloop.counter}}"> - {{ form.headnode }} - </td> - </tr> -{% endfor %} -{{formset.management_form}} - -{% endblock table %} - -{% block tablejs %} -<script> - - function radio_pre_submit(){ - var parents = document.getElementsByClassName("table_hidden_input_parent"); - for(const node of parents){ - const radio = node.getElementsByClassName("my_radio")[0]; - const checkbox = radio.nextElementSibling; - if(radio.checked){ - checkbox.value = "True"; - } - } - } - - form_submission_callbacks.push(radio_pre_submit); -</script> -{% endblock tablejs %} |