-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.tpl
99 lines (82 loc) · 3.92 KB
/
config.tpl
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
<h2>Russian Post</h2>
<form action="{$glob.url}" class="form" method="POST">
<fieldset>
<legend>Настройки</legend>
<label for="rouble_id_input">Валюта, представляющая рубли</label>
<div class="margin-form">
<select name="rouble_id" id="rouble_id_input">
{foreach from=$currencies item="currency"}
<option value="{$currency.id_currency}">{$currency.name}</option>
{/foreach}
</select>
</div>
<label for="russia_id_input">Страна, Российская Федерация</label>
<div class="margin-form">
<select name="russia_id" id="russia_id_input">
{foreach from=$countries item="country"}
<option value="{$country.id_country}">{$country.name}</option>
{/foreach}
</select>
</div>
<label for="max_weight_input">Максимальный вес отправления</label>
<div class="margin-form">
<input type="text" value="20" id="max_weight_input" />
</div>
<label for="hard_weight_input">Вес усложненной тарификации</label>
<div class="margin-form">
<input type="text" value="10" id="hard_weight_input" />
</div>
<label for="declared_cost_price_input">Процент за объявленную стоимость</label>
<div class="margin-form">
<input type="text" value="4" id="declared_cost_price_input">
</div>
</fieldset>
<br />
<fieldset>
<legend>Стоимость отправки посылки весом до 0.5 килограмм (включительно)</legend>
<label for="zone_1_first_half_kgs_input">Зона 1</label>
<div class="margin-form">
<input type="text" value="0" id="zone_1_first_half_kgs_input" />
</div>
<label for="zone_2_first_half_kgs_input">Зона 1</label>
<div class="margin-form">
<input type="text" value="0" id="zone_2_first_half_kgs_input" />
</div>
<label for="zone_3_first_half_kgs_input">Зона 1</label>
<div class="margin-form">
<input type="text" value="0" id="zone_3_first_half_kgs_input" />
</div>
<label for="zone_4_first_half_kgs_input">Зона 1</label>
<div class="margin-form">
<input type="text" value="0" id="zone_4_first_half_kgs_input" />
</div>
<label for="zone_5_first_half_kgs_input">Зона 1</label>
<div class="margin-form">
<input type="text" value="0" id="zone_5_first_half_kgs_input" />
</div>
</fieldset>
<br />
<fieldset>
<legend>Стоимость отправки каждых дополнительных 0.5 килограмм</legend>
<label for="zone_1_each_additional_half_kgs_input">Зона 1</label>
<div class="margin-form">
<input type="text" value="0" id="zone_1_each_additional_half_kgs_input" />
</div>
<label for="zone_2_each_additional_half_kgs_input">Зона 1</label>
<div class="margin-form">
<input type="text" value="0" id="zone_2_each_additional_half_kgs_input" />
</div>
<label for="zone_3_each_additional_half_kgs_input">Зона 1</label>
<div class="margin-form">
<input type="text" value="0" id="zone_3_each_additional_half_kgs_input" />
</div>
<label for="zone_4_each_additional_half_kgs_input">Зона 1</label>
<div class="margin-form">
<input type="text" value="0" id="zone_4_each_additional_half_kgs_input" />
</div>
<label for="zone_5_each_additional_half_kgs_input">Зона 1</label>
<div class="margin-form">
<input type="text" value="0" id="zone_5_each_additional_half_kgs_input" />
</div>
</fieldset>
</form>