batchcreate.html.php 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
  2. <div id='mainContent' class='main-content'>
  3. <form class='main-form form-ajax' method='post' id='reviewclForm' enctype='multipart/form-data'>
  4. <table class='table table-form'>
  5. <thead>
  6. <tr class='text-center'>
  7. <th class='w-50px'> <?php echo $lang->reviewcl->id;?></th>
  8. <th class='w-200px'> <?php echo $lang->reviewcl->object;?></th>
  9. <th class='w-200px'> <?php echo $lang->reviewcl->category;?></th>
  10. <th class='required'><?php echo $lang->reviewcl->title;?></th>
  11. </tr>
  12. </thead>
  13. <tbody>
  14. <?php for($i = 1; $i <= 10; $i ++):?>
  15. <tr>
  16. <td><?php echo $i;?></td>
  17. <td><?php echo html::select("objects[$i]", $lang->baseline->objectList, $object, "class='form-control chosen'");?></td>
  18. <td><?php echo html::select("categories[$i]", $lang->reviewcl->{$type . 'CategoryList'}, '', "class='form-control chosen'");?></td>
  19. <td><?php echo html::input("titles[$i]", '', "class='form-control'");?></td>
  20. </tr>
  21. <?php endfor;?>
  22. </tbody>
  23. <tfoot>
  24. <tr>
  25. <td colspan='4' class='text-center form-actions'><?php echo html::submitButton() . ' ' . html::backButton(); ?></td>
  26. </tr>
  27. </tfoot>
  28. </table>
  29. </form>
  30. </div>
  31. <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>