Template_edit.html 1.0 KB

1234567891011121314151617181920
  1. <form name="myform" id="myform" action="{:U($module_name.'/edit')}" method="post">
  2. <table cellpadding=0 cellspacing=0 class="table_form"width="100%">
  3. <tr>
  4. <td width="120">{:L('filename')}</td>
  5. <td>
  6. <input type="text" class="input-text" validate="required:true, minlength:2, maxlength:30" name="file" value="{$filename}" <if condition="$action_name=='edit'">readonly="readonly"</if>/>
  7. <if condition="$action_name=='add'"><input type="radio" name="type" value="html" checked />{:L(file_type_html)} <input type="radio" name="type" value="css" /> {:L(file_type_css)} <input type="radio" name="type" value="js"/>{:L(file_type_js)}</if>
  8. </td>
  9. </tr>
  10. <tr>
  11. <td>{:L('content')}</td>
  12. <td><textarea id="content" name="content" style="width:95%; height:400px" validate="required:true, minlength:4" ></textarea></td>
  13. </tr>
  14. </table>
  15. <div class="btn">
  16. <INPUT TYPE="submit" name="dosubmit" value="{:L('dosubmit')}" class="button buttonBtn" >
  17. <input TYPE="reset" value="{:L('cancel')}" class="button">
  18. </div>
  19. </form>