edittemplate.html.php 1.3 KB

123456789101112131415161718192021222324252627282930
  1. <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
  2. <?php include $app->getModuleRoot() . 'common/view/kindeditor.html.php';?>
  3. <div id="mainContent" class="main-content fade">
  4. <div class="center-block">
  5. <div class="main-header">
  6. <h2><?php echo $lang->measurement->editTemplate;?></h2>
  7. </div>
  8. <form class="load-indicator main-form form-ajax" method='post' enctype='multipart/form-data' id='dataform'>
  9. <table class="table table-form">
  10. <tr>
  11. <th><?php echo $lang->measurement->name;?></th>
  12. <td><?php echo html::input('name', $template->name, "class='form-control'");?></td>
  13. </tr>
  14. <tr>
  15. <th><?php echo $lang->measurement->content;?></th>
  16. <td colspan='2' class='tips'>
  17. <?php echo html::textarea('content', $template->content, "class='form-control'");?>
  18. <i class="icon icon-exclamation-sign icon-rotate-180"></i>
  19. <?php echo $lang->measurement->tips->click2InsertData;?>
  20. </td>
  21. </tr>
  22. <tr>
  23. <td colspan='3' class='form-actions text-center'><?php echo html::submitButton() . html::backButton();?></td>
  24. </tr>
  25. </table>
  26. </form>
  27. </div>
  28. </div>
  29. <?php include './holdermodal.html.php';?>
  30. <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>