21 lines
836 B
PHP
21 lines
836 B
PHP
<?php
|
|
/**
|
|
* The html template file of index method of my module of QuCheng.
|
|
*
|
|
* @copyright Copyright 2021-2022 北京渠成软件有限公司(BeiJing QuCheng Software Co,LTD, www.qucheng.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 my
|
|
* @version $Id$
|
|
* @link https://www.qucheng.com
|
|
*/
|
|
?>
|
|
<?php include $this->app->getModuleRoot() . '/common/view/header.html.php';?>
|
|
<div id="mainContent" class="main-row">
|
|
<div class="main-col col-12">
|
|
<div class="panel"><?php include 'overviewblock.html.php';?></div>
|
|
<div class="panel"><?php include 'instancesblock.html.php';?></div>
|
|
</div>
|
|
</div>
|
|
<?php include $this->app->getModuleRoot() . '/common/view/footer.html.php';?>
|