diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-01-03 16:09:13 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-01-03 16:09:13 +0000 |
commit | fdf6f46f9c548c8e3748f32840d3af2cb3335271 (patch) | |
tree | 6db479ec0c22d98a99e07b9f0a5a14e24a303a89 /src/templates/dashboard | |
parent | b729dd4e21e90fe6f83b31cabdcc9f74757c70bd (diff) | |
parent | f27e25c199c3c5c9433463732b776ae9b4357cf8 (diff) |
Merge "Implement Segmented Workflows"
Diffstat (limited to 'src/templates/dashboard')
-rw-r--r-- | src/templates/dashboard/searchable_select_multiple.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/templates/dashboard/searchable_select_multiple.html b/src/templates/dashboard/searchable_select_multiple.html index e7128b0..ee460dd 100644 --- a/src/templates/dashboard/searchable_select_multiple.html +++ b/src/templates/dashboard/searchable_select_multiple.html @@ -1,6 +1,12 @@ <script src="https://code.jquery.com/jquery-2.2.4.min.js"></script> <div class="autocomplete" style="width:400px;"> + <div id="warning_pane" style="background: #FFFFFF; color: #CC0000;"> + {% if incompatible == "true" %} + <h3>Warning: Incompatible Configuration</h3> + <p>Please make a different selection, as the current config conflicts with the selected pod</p> + {% endif %} + </div> <input id="user_field" name="ignore_this" class="form-control" autocomplete="off" type="text" placeholder="{{placeholder}}" value="{{initial.name}}" oninput="search(this.value)" {% if disabled %} disabled {% endif %} > |