| 12345678910111213141516171819202122 |
- <?php
- /**
- * The custom install view file of instance module of ZenTaoPMS.
- *
- * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
- * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author Jianhua Wang <wangjianhua@easycorp.ltd>
- * @package instance
- * @version $Id$
- * @link https://www.zentao.net
- */
- ?>
- <?php include $this->app->getModuleRoot() . '/common/view/header.html.php';?>
- <div id='mainContent' class='main-content'>
- <div class='center-block'>
- <div class='main-header'>
- <h2><?php echo $lang->instance->errors->notEnoughResource;?></h2>
- </div>
- <div><p style='padding-top: 15px;'><?php echo sprintf($lang->instance->errors->notEnoughMemory, $cloudApp->alias, $requiredMemory, $freeMemory, $gapMemory);?></p></div>
- </div>
- </div>
- <?php include $this->app->getModuleRoot() . '/common/view/footer.html.php';?>
|