aboutsummaryrefslogtreecommitdiffstats
path: root/admportal/views/partials/oper_status_modal.ejs
blob: ae6cbe06e6f24101928c2d41cb404be303ce0b87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
   <div class="modal fade" id="oper-status-modal" tabindex="-1" role="dialog" aria-labelledby="oper-status-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">&times;</button>
            <h4 class="modal-title" id="oper-status-modal-label">oper-status</h4>
          </div>
          <div class="modal-body">
            <form id="oper_status_form" role="form" action="" method="POST">
              <div class="form-group">
                <label for="order_status">order-status</label>
                <input type="text" class="form-control" name="order_status" id="order_status">
              </div>
              <div class="form-group">
                <label for="modify_timestamp">modify-timestamp</label>
                <input type="text" class="form-control" name="modify_timestamp" id="modify_timestamp">
              </div>
              <div class="form-group">
                <label for="last_svc_request_id">last-svc-request-id</label>
                <input type="text" class="form-control" name="last_svc_request_id" id="last_svc_request_id">
              </div>
              <div class="form-group">
                <label for="last_sub_action">last-sub-action</label>
                <input type="text" class="form-control" name="last_sub_action" id="last_sub_action">
              </div>
              <div class="form-group">
                <label for="t_defaulted_v6_vrlan">t-defaulted-v6-vrlan</label>
                <input type="text" class="form-control" name="t_defaulted_v6_vrlan" id="t_defaulted_v6_vrlan">
              </div>
              <div class="form-group">
                <label for="last_action">last-action</label>
                <input type="text" class="form-control" name="last_action" id="last_action">
              </div>
              <div class="form-group">
                <label for="create_timestamp">create-timestamp</label>
                <input type="text" class="form-control" name="create_timestamp" id="create_timestamp">
              </div>
              <div class="form-group">
                <label for="maintenance_indicator">maintenance-indicator</label>
                <input type="text" class="form-control" name="maintenance_indicator" id="maintenance_indicator">
              </div>
              <div class="form-group">
                <label for="last_order_status">last-order-status</label>
                <input type="text" class="form-control" name="last_order_status" id="last_order_status">
              </div>

<!--
              <div class="form-group">
				<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){
	$('#service-status-modal').modal('hide');
	form.action = form.uf_action.value;
	form.submit();
	return;
}
</script>