ajaxviewdb.html.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * The ajaxViewDB view file of workflowtable module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
  6. * @license ZPL (http://zpl.pub/page/zplv12.html)
  7. * @author Sun Guangming<sunguangming@chandao.com>
  8. * @package workflowtable
  9. * @version $Id$
  10. * @link http://www.zentao.net
  11. */
  12. ?>
  13. <style>
  14. #tableDetail {background-color: #F1F1F1; border: 1px solid #ddd; padding-bottom: 10px; margin-bottom: 0;}
  15. #tableDetail table.table tr > th{font-weight: normal; color: #64758b;}
  16. #tableDetail table.table tr > th, #tableDetail table.table tr > td{padding: 2px 5px;}
  17. </style>
  18. <div id='tableDetail' class='panel'>
  19. <div class='panel-heading'><strong><?php printf($lang->workflowfield->detail, $table->name);?></strong></div>
  20. <table class='table table-form'>
  21. <tr>
  22. <th class='w-80px'><?php echo $lang->workflowtable->name;?></th>
  23. <td><?php echo $table->name?></td>
  24. </tr>
  25. <tr>
  26. <th><?php echo $lang->workflow->table;?></th>
  27. <td><?php echo $table->table?></td>
  28. </tr>
  29. <tr>
  30. <th><?php echo $lang->workflowtable->module;?></th>
  31. <td><?php echo $table->module;?></td>
  32. </tr>
  33. </table>
  34. </div>