create.html.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  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->reviewcl->create;?></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. <tbody>
  11. <tr>
  12. <th><?php echo $lang->reviewcl->object;?></th>
  13. <td><?php echo html::select('object', $lang->baseline->objectList, $object, "class='form-control chosen'");?></td>
  14. <td></td>
  15. </tr>
  16. <tr>
  17. <th><?php echo $lang->reviewcl->category;?></th>
  18. <td><?php echo html::select('category', $lang->reviewcl->{$type . 'CategoryList'}, '', "class='form-control chosen'");?></td>
  19. <td></td>
  20. </tr>
  21. <tr>
  22. <th><?php echo $lang->reviewcl->title;?></th>
  23. <td><?php echo html::input('title', '', "class='form-control'");?></td>
  24. <td></td>
  25. </tr>
  26. <tr>
  27. <td colspan='2' class='text-center form-actions'><?php echo html::submitButton() . html::backButton();?></td>
  28. </tr>
  29. </tbody>
  30. </table>
  31. </form>
  32. </div>
  33. </div>
  34. <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>