diff options
author | Dan Timoney <dtimoney@att.com> | 2021-04-12 08:17:37 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2021-04-12 08:17:37 -0400 |
commit | 5cabe36fe85a780a9fb808343d6341f15da13524 (patch) | |
tree | 4893568c164dfaa82226eacc75fec4d622acb398 /admportal/views/partials/excluded_v4_address.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/excluded_v4_address.ejs')
-rw-r--r-- | admportal/views/partials/excluded_v4_address.ejs | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/admportal/views/partials/excluded_v4_address.ejs b/admportal/views/partials/excluded_v4_address.ejs deleted file mode 100644 index e74d3245..00000000 --- a/admportal/views/partials/excluded_v4_address.ejs +++ /dev/null @@ -1,38 +0,0 @@ - <div class="modal fade" id="excluded-v4-address-modal" tabindex="-1" role="dialog" - aria-labelledby="excluded-v4-address-modal-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">dhcp</h4> - </div> - <div class="modal-body"> - <form role="form" action="" method="POST"> - <div class="form-group"> - <label for="exclded_v4_address">exclded-v4-address</label> - <input type="text" class="form-control" name="exclded_v4_address" id="exclded_v4_address"> - </div> - -<!-- - <div class="form-group"> - <input type="hidden" name="svc_instance_id" id="svc_instance_id"> - <input type="hidden" name="uf_action" id="uf_action"> - <button type="button" class="btn btn-primary" onclick="submit(this.form);">Submit</button> - <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> - </div> ---> - </form> - </div> - </div> - </div> - </div> - -<script type="text/javascript"> -function submit(form){ - $('#excluded-v4-address-modal').modal('hide'); - form.action = form.uf_action.value; - form.submit(); - return; -} -</script> - |