Config_index.html 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. <form method='post' id="form1" action="{:U('Config/dosite')}">
  2. <table cellpadding=0 cellspacing=0 width="100%" class="table_form" >
  3. <volist name="site_config" id="vo">
  4. <if condition="$vo[varname]=='seo_description'">
  5. <tr>
  6. <th width="140">{$vo.info}:</th>
  7. <td><textarea id="" rows="4" cols="60" name="{$vo.varname}">{$vo.value}</textarea> {$vo.varname} </td>
  8. </tr>
  9. <else />
  10. <tr>
  11. <th width="140">{$vo.info}:</th>
  12. <td><input type="text" class="input-text" name="{$vo.varname}" value="{$vo.value}" size="40">{$vo.varname} </td>
  13. </tr>
  14. </if>
  15. </volist>
  16. <volist name="user_config" id="vo">
  17. <tr>
  18. <th width="140">{$vo.info}:</th>
  19. <td><input type="text" class="input-text" name="{$vo.varname}" value="{$vo.value}" size="40"><a href="{:U('Config/delete?varname='.$vo[varname])}"><font color="red">{:L(delete)}</font></a> &nbsp;{$vo.varname} </td>
  20. </tr>
  21. </volist>
  22. </table>
  23. <div class="btn">
  24. <INPUT TYPE="submit" value="{:L('save')}" class="button buttonBtn" >
  25. <input TYPE="reset" value="{:L('reset')}" class="button">
  26. </div>
  27. </form>
  28. </div>