diff options
author | 2021-04-12 08:17:37 -0400 | |
---|---|---|
committer | 2021-04-12 08:17:37 -0400 | |
commit | 5cabe36fe85a780a9fb808343d6341f15da13524 (patch) | |
tree | 4893568c164dfaa82226eacc75fec4d622acb398 /admportal/views/partials/network_profile.ejs | |
parent | 41a3f91544616f0e785e0e9e552e9fd0234cc9b3 (diff) |
Fix ccsdk version and remove admportal2.1.4
Fix ccsdk versions and remove admportal, which is no longer supported
Change-Id: Iaee9bd2b7d5d7345f889357684df18d53db466a1
Issue-ID: SDNC-1507
Signed-off-by: Dan Timoney <dtimoney@att.com>
Former-commit-id: a1d57d8f5131414429f9ef2d8b0468004d253d0a
Diffstat (limited to 'admportal/views/partials/network_profile.ejs')
-rw-r--r-- | admportal/views/partials/network_profile.ejs | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/admportal/views/partials/network_profile.ejs b/admportal/views/partials/network_profile.ejs deleted file mode 100644 index 81d7f32a..00000000 --- a/admportal/views/partials/network_profile.ejs +++ /dev/null @@ -1,59 +0,0 @@ - <div class="modal fade" id="add_network_profile" tabindex="-1" role="dialog" - aria-labelledby="add_network_profile" aria-hidden="true"> - <div class="modal-dialog"> - <div class="modal-content"> - <div class="modal-header"> - <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> - <h4 class="modal-title">Add Network Profile</h4> - </div> - <div class="modal-body"> - <form name="addForm" role="form" action="/gamma/addNetworkProfile" method="POST"> - <div class="form-group"> - <label for="nf_network_type">*Network Type</label> - <input type="text" class="form-control" name="nf_network_type" id="nf_network_type" maxlength="100" placeholder="varchar(100)"> - </div> - <div class="form-group"> - <label for="nf_technology">Technology</label> - <input type="text" class="form-control" name="nf_technology" id="nf_technology" maxlength="100" placeholder="varchar(100)"> - </div> - <div class="form-group"> - <input type="hidden" name="nf_action" id="nf_action"> - <button type="button" class="btn btn-primary" onclick="saveNetworkProfile(this.form);">Save</button> - <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> - </div> - </form> - </div> - </div> - </div> - </div> - -<div class="modal fade" id="update_network_profile" tabindex="-1" role="dialog" - aria-labelledby="update_network_profile_label" aria-hidden="true"> - <div class="modal-dialog"> - <div class="modal-content"> - <div class="modal-header"> - <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> - <h4 class="modal-title">Update Network Profile</h4> - </div> - <div class="modal-body"> - <form role="form" action="/gamma/updateNetworkProfile" method="POST"> - <div class="form-group"> - <label for="uf_network_type">*Network Type</label> - <input type="text" class="form-control" maxlength="100" name="uf_network_type" id="uf_network_type" placeholder="varchar(100)"> - </div> - <div class="form-group"> - <label for="uf_technology">Technology</label> - <input type="text" class="form-control" maxlength="100" name="uf_technology" id="uf_technology" placeholder="varchar(100)"> - </div> - <div class="form-group"> - <input type="hidden" name="uf_action" id="uf_action"> - <input type="hidden" name="uf_key_network_type" id="uf_key_network_type"> - <button type="button" class="btn btn-primary" onclick="saveNetworkProfile(this.form);">Save</button> - <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> - </div> - </form> - </div> - </div> - </div> - </div> - |