23 lines
1.0 KiB
PHP
23 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* The index view of company module of RanZhi.
|
|
*
|
|
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd., www.zentao.net)
|
|
* @license ZOSL (https://zpl.pub/page/zoslv1.html)
|
|
* @author Tingting Dai <daitingting@xirangit.com>
|
|
* @package company
|
|
* @version $Id$
|
|
* @link http://www.ranzhi.org
|
|
*/
|
|
?>
|
|
<?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
|
|
<div class='panel'>
|
|
<div class='panel-heading'><strong><i class='icon-group'></i> <?php echo $lang->aboutUs; ?></strong></div>
|
|
<div class="panel-body">
|
|
<div class="col-xs-1"><strong><?php echo $lang->company->name;?></strong></div>
|
|
<div class="col-xs-10"><?php echo isset($company) ? $company : '<small class="text-muted">' . $lang->company->unset . '</small>';?></div>
|
|
<div class="col-xs-1"><?php echo html::a($this->inlink('setBasic'), $lang->company->setBasic, "class='btn btn-primary btn-xs'");?></div>
|
|
</div>
|
|
</div>
|
|
<?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>
|