mirror of
https://github.com/myvesta/vesta
synced 2025-08-20 21:34:12 -07:00
WEB. templates fixed #915
This commit is contained in:
parent
36a1a3d49b
commit
02ac870ab7
38 changed files with 381 additions and 382 deletions
|
@ -51,12 +51,12 @@
|
|||
<table class="data-col2" width="600px">
|
||||
<tr>
|
||||
<td class="vst-text step-top">
|
||||
<?php print $v_config_path ?>
|
||||
<?=$v_config_path ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<textarea class="vst-textinput console" name="v_config"><?php echo $v_config;?></textarea>
|
||||
<textarea class="vst-textinput console" name="v_config"><?=$v_config?></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<?php if (!empty($v_config_path1)) {
|
||||
|
@ -64,84 +64,84 @@
|
|||
|
||||
<tr>
|
||||
<td class="vst-text step-top">
|
||||
<?php print $v_config_path1 ?>
|
||||
<?=$v_config_path1 ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<textarea class="vst-textinput console" name="v_config1"><?php echo $v_config1;?></textarea>
|
||||
<textarea class="vst-textinput console" name="v_config1"><?=$v_config1?></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="vst-text step-top">
|
||||
<?php print $v_config_path2 ?>
|
||||
<?=$v_config_path2?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<textarea class="vst-textinput console" name="v_config2"><?php echo $v_config2;?></textarea>
|
||||
<textarea class="vst-textinput console" name="v_config2"><?=$v_config2?></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="vst-text step-top">
|
||||
<?php print $v_config_path3 ?>
|
||||
<?=$v_config_path3 ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<textarea class="vst-textinput console" name="v_config3"><?php echo $v_config3;?></textarea>
|
||||
<textarea class="vst-textinput console" name="v_config3"><?=$v_config3?></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="vst-text step-top">
|
||||
<?php print $v_config_path4 ?>
|
||||
<?=$v_config_path4 ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<textarea class="vst-textinput console" name="v_config4"><?php echo $v_config4;?></textarea>
|
||||
<textarea class="vst-textinput console" name="v_config4"><?=$v_config4?></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="vst-text step-top">
|
||||
<?php print $v_config_path5 ?>
|
||||
<?=$v_config_path5 ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<textarea class="vst-textinput console" name="v_config5"><?php echo $v_config5;?></textarea>
|
||||
<textarea class="vst-textinput console" name="v_config5"><?=$v_config5?></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="vst-text step-top">
|
||||
<?php print $v_config_path6 ?>
|
||||
<?=$v_config_path6 ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<textarea class="vst-textinput console" name="v_config6"><?php echo $v_config6;?></textarea>
|
||||
<textarea class="vst-textinput console" name="v_config6"><?=$v_config6?></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="vst-text step-top">
|
||||
<?php print $v_config_path7 ?>
|
||||
<?=$v_config_path7 ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<textarea class="vst-textinput console" name="v_config7"><?php echo $v_config7;?></textarea>
|
||||
<textarea class="vst-textinput console" name="v_config7"><?=$v_config7?></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="vst-text step-top">
|
||||
<?php print $v_config_path8 ?>
|
||||
<?=$v_config_path8 ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<textarea class="vst-textinput console" name="v_config8"><?php echo $v_config8;?></textarea>
|
||||
<textarea class="vst-textinput console" name="v_config8"><?=$v_config8?></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
@ -157,10 +157,10 @@
|
|||
<table class="data-col2">
|
||||
<tr>
|
||||
<td class="step-top" width="116px">
|
||||
<input type="submit" class="button" name="save" value="<?php print __('Save');?>">
|
||||
<input type="submit" class="button" name="save" value="<?=__('Save')?>">
|
||||
</td>
|
||||
<td class="step-top">
|
||||
<input type="button" class="button cancel" value="<?php print __('Back');?>" onclick="<?php echo $back ?>">
|
||||
<input type="button" class="button cancel" value="<?=__('Back')?>" onclick="<?=$back?>">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue