We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc187b3 commit ff8ef79Copy full SHA for ff8ef79
1 file changed
web/templates/user/edit_dns.html
@@ -61,6 +61,27 @@
61
<?php print __('IP Address');?>
62
</td>
63
</tr>
64
+ <tr>
65
+ <td class="vst-text input-label">
66
+ <?php print __('Template') . "<span class='optional'>" . strtoupper($_SESSION['DNS_SYSTEM']) . "</span>";?>
67
+ </td>
68
+ </tr>
69
70
+ <td>
71
+ <select class="vst-list" name="v_template">
72
+ <?php
73
+ foreach ($templates as $key => $value) {
74
+ echo "\t\t\t\t<option value=\"".htmlentities($value)."\"";
75
+ $svalue = "'".$value."'";
76
+ if ((!empty($v_template)) && ( $value == $v_template ) || ($svalue == $v_template)){
77
+ echo ' selected' ;
78
+ }
79
+ echo ">".htmlentities($value)."</option>\n";
80
81
+ ?>
82
+ </select>
83
84
85
<tr>
86
<td>
87
<input type="text" size="20" class="vst-input" name="v_ip" value="<?=htmlentities(trim($v_ip, "'"))?>">
0 commit comments