mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-31 13:25:32 +08:00
51 lines
1.7 KiB
HTML
51 lines
1.7 KiB
HTML
<!--
|
|
Copyright 2012-2026 ShopeX (https://www.shopex.cn)
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<h3><{$appinfo.name}> <sup><{$appinfo.version}></sup></h3>
|
|
<div class="tableform">
|
|
<h4><{t}>应用信息<{/t}></h4>
|
|
<div class="division">
|
|
<table>
|
|
<tr>
|
|
<th><{t}>简介:<{/t}></th>
|
|
<td><{$appinfo.description}></td>
|
|
</tr>
|
|
<tr>
|
|
<th><{t}>证书:<{/t}></th>
|
|
<td><{$appinfo.license}></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<h4><{t}>开发者信息<{/t}></h4>
|
|
<div class="division">
|
|
<table>
|
|
<tr><th><{t}>开发者:<{/t}></th><td><{$appinfo.author.name}></td></tr>
|
|
<tr><th><{t}>Email:<{/t}></th><td><{$appinfo.author.email}></td></tr>
|
|
<tr><th><{t}>www:<{/t}></th><td><{$appinfo.author.url}></td></tr>
|
|
</table>
|
|
</div>
|
|
|
|
<{if $docs}>
|
|
<h4><{t}>文档<{/t}></h4>
|
|
<div class="division">
|
|
<table>
|
|
<{foreach from=$docs item=doc key=file}>
|
|
<tr><th></th><td><a href="<{$env.base_url}>/index.php/app-doc/<{$env.get.id}>/<{$file}>" target="_blank"><{$doc}></a><td>
|
|
<{/foreach}>
|
|
</table>
|
|
</div>
|
|
<{/if}>
|
|
</div> |