slbview.html.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * The install domain view file of system module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
  6. * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  7. * @author Jianhua Wang <wangjianhua@easycorp.ltd>
  8. * @package system
  9. * @version $Id$
  10. * @link https://www.zentao.net
  11. */
  12. ?>
  13. <?php include $this->app->getModuleRoot() . '/common/view/header.html.php';?>
  14. <div id='mainMenu' class='clearfix'>
  15. <div class='btn-toolbar pull-left'>
  16. <?php echo html::a($this->createLink('system', 'index'), "<i class='icon icon-back icon-sm'></i>" . $lang->goback, '', "class='btn btn-secondary'");?>
  17. </div>
  18. </div>
  19. <div id='mainContent' class='main-row'>
  20. <div class='main-col main-content'>
  21. <div class='main-header'>
  22. <h2><?php echo $lang->system->SLB->common;?></h2>
  23. <div class='smtp-button-group btn-toolbar pull-right'>
  24. <?php echo html::a($this->inLink('editSLB'), $lang->system->SLB->edit, '', "class='btn btn-primary'");?>
  25. </div>
  26. </div>
  27. <table class='table table-form'>
  28. <tbody>
  29. <tr>
  30. <th><?php echo $lang->system->SLB->ipPool;?></th>
  31. <td><?php echo zget($slbSettings, 'ippool', '');?></td>
  32. <td></td>
  33. </tr>
  34. </tbody>
  35. </table>
  36. </div>
  37. </div>
  38. <?php include $this->app->getModuleRoot() . '/common/view/footer.html.php';?>