Module_edit.html 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <form name="myform" id="myform" action="<if condition="$action_name=='add'">{:U($module_name.'/insert')}<else />{:U($module_name.'/update')}</if>" method="post">
  2. <table cellpadding=0 cellspacing=0 class="table_form" width="100%">
  3. <tr>
  4. <td width="120"><font color="red">*</font>{:L(module_name)}
  5. </td>
  6. <td>
  7. <input type="text" id="title" name="title" value="{$vo.title}" size="20" class="input-text required" minlength="2" maxlength="30" title="{:L(module_tip_title)}" />
  8. </td>
  9. </tr>
  10. <tr>
  11. <td width="120"><font color="red">*</font>{:L(module_table)}
  12. </td>
  13. <td>
  14. <input type="text" id="name" name="name" <if condition="$action_name=='edit'">disabled="disabled"</if> value="{$vo.name}" size="20" class="input-text" validate="required:true, english:true,remote: '{:U($module_name.'/insert?isajax=1')}' ,minlength:2, maxlength:30" />
  15. </td>
  16. </tr>
  17. <tr>
  18. <td>{:L(module_listfields)}
  19. </td>
  20. <td><input type="text" id="listfields" name="listfields" class="input-text" size="55" value="<if condition="empty($vo['listfields'])">*<else />{$vo.listfields}</if>" /> {:L(examples)}:id,title,url,catid
  21. </td>
  22. </tr>
  23. <tr>
  24. <td>{:L(module_issearch)}
  25. </td>
  26. <td>{:Form::radio(array('field'=>'issearch','options'=>array('1'=>L('yes'),'0'=>L('no'))),$vo['issearch'])}</td>
  27. </td>
  28. </tr>
  29. <tr>
  30. <td>{:L(module_ispost)}
  31. </td>
  32. <td>{:Form::radio(array('field'=>'ispost','options'=>array('1'=>L('yes'),'0'=>L('no'))),$vo['ispost'])}</td>
  33. </td>
  34. </tr>
  35. <tr>
  36. <td>{:L('postgroup')}</td>
  37. <td>{:Form::checkbox(array('field'=>'postgroup','options'=>$Role,'options_key'=>'key,name'),$vo['postgroup'])}</td>
  38. </tr>
  39. <tr>
  40. <td>{:L(module_description)}
  41. </td>
  42. <td><textarea id="description" name="description" rows=4"" cols="56">{$vo.description}</textarea>
  43. </td>
  44. </tr>
  45. <if condition="$action_name=='add'">
  46. <tr>
  47. <td>{:L(module_table_type)}
  48. </td>
  49. <td><input type="radio" name="emptytable" value="1" /> {:L(module_empty_table)} <input type="radio" name="emptytable" value="0" checked /> {:L(module_news_table)}
  50. </td>
  51. </tr>
  52. <input type="hidden" id="type" name="type" value="{$_GET[type]}"/>
  53. </if>
  54. </table>
  55. <div class="btn">
  56. <if condition="$vo['id']!=''"><input TYPE="hidden" name="id" value="{$vo.id}"></if>
  57. <INPUT TYPE="submit" value="{:L('dosubmit')}" class="button buttonBtn" >
  58. <input TYPE="reset" value="{:L('cancel')}" class="button">
  59. </div>
  60. </form>
  61. </div>
  62. </body></html>