forked from Waterticket/rx-module-hotopay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelete_subscription.html
115 lines (99 loc) · 4.6 KB
/
delete_subscription.html
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<include target="__header.html" />
<h1>Subscription Delete</h1>
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form class="x_form-horizontal" action="./" method="post" enctype="multipart/form-data">
<input type="hidden" name="module" value="admin" />
<input type="hidden" name="act" value="procHotopayAdminDeleteSubscription" />
<div class="message {$XE_VALIDATOR_MESSAGE_TYPE}" cond="$XE_VALIDATOR_MESSAGE">
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<div class="x_control-group">
<label class="x_control-label" for="subscription_srl">{$lang->subscription_srl}</label>
<div class="x_controls">
<input type="hidden" name="subscription_srl" id="subscription_srl" value="{$subscription->subscription_srl}">
<p>{$subscription->subscription_srl}</p>
</div>
</div>
<div class="x_control-group">
<label class="x_control-label" for="member_srl">{$lang->member_srl}</label>
<div class="x_controls">
<input type="hidden" name="member_srl" id="member_srl" value="{$subscription->member_srl}">
<p>{$subscription->member_srl}</p>
</div>
</div>
<div class="x_control-group">
<label class="x_control-label" for="product_srl">{$lang->product_srl}</label>
<div class="x_controls">
<input type="hidden" name="product_srl" id="product_srl" value="{$subscription->product_srl}">
<p>{$subscription->product_srl}</p>
</div>
</div>
<div class="x_control-group">
<label class="x_control-label" for="option_srl">{$lang->option_srl}</label>
<div class="x_controls">
<input type="hidden" name="option_srl" id="option_srl" value="{$subscription->option_srl}">
<p>{$subscription->option_srl}</p>
</div>
</div>
<div class="x_control-group">
<label class="x_control-label" for="quantity">{$lang->quantity}</label>
<div class="x_controls">
<input type="hidden" name="quantity" id="quantity" value="{$subscription->quantity}">
<p>{$subscription->quantity}</p>
</div>
</div>
<div class="x_control-group">
<label class="x_control-label" for="price">{$lang->price}</label>
<div class="x_controls">
<input type="hidden" name="price" id="price" value="{$subscription->price}">
<p>{$subscription->price}</p>
</div>
</div>
<div class="x_control-group">
<label class="x_control-label" for="billing_key_idx">{$lang->billing_key_idx}</label>
<div class="x_controls">
<input type="hidden" name="billing_key_idx" id="billing_key_idx" value="{$subscription->billing_key_idx}">
<p>{$subscription->billing_key_idx}</p>
</div>
</div>
<div class="x_control-group">
<label class="x_control-label" for="period">{$lang->period}</label>
<div class="x_controls">
<input type="hidden" name="period" id="period" value="{$subscription->period}">
<p>{$subscription->period}</p>
</div>
</div>
<div class="x_control-group">
<label class="x_control-label" for="register_date">{$lang->register_date}</label>
<div class="x_controls">
<input type="hidden" name="register_date" id="register_date" value="{$subscription->register_date}">
<p>{$subscription->register_date}</p>
</div>
</div>
<div class="x_control-group">
<label class="x_control-label" for="last_billing_date">{$lang->last_billing_date}</label>
<div class="x_controls">
<input type="hidden" name="last_billing_date" id="last_billing_date" value="{$subscription->last_billing_date}">
<p>{$subscription->last_billing_date}</p>
</div>
</div>
<div class="x_control-group">
<label class="x_control-label" for="esti_billing_date">{$lang->esti_billing_date}</label>
<div class="x_controls">
<input type="hidden" name="esti_billing_date" id="esti_billing_date" value="{$subscription->esti_billing_date}">
<p>{$subscription->esti_billing_date}</p>
</div>
</div>
<div class="x_control-group">
<label class="x_control-label" for="status">{$lang->status}</label>
<div class="x_controls">
<input type="hidden" name="status" id="status" value="{$subscription->status}">
<p>{$subscription->status}</p>
</div>
</div>
<div class="btnArea x_clearfix">
<button type="submit" class="x_btn x_btn-primary x_pull-right">삭제</button>
</div>
</form>