* Admin: fix site-config not working in mobile template

This commit is contained in:
Hadi Nategh 2018-01-03 15:01:45 +01:00
parent 525a5ced2a
commit 8b6acb00fa
2 changed files with 53 additions and 1 deletions

View File

@ -39,10 +39,38 @@
</rows> </rows>
</grid> </grid>
</template> </template>
<template id="admin.index.group" template="" lang="" group="0" version="1.9.001">
<grid width="100%">
<columns>
<column width="90%"/>
<column width="130"/>
</columns>
<rows>
<row>
</row>
<row class="$row_cont[status_class]">
<vbox>
<description id="${row}[account_lid]" no_lang="1"/>
<hbox>
<description id="${row}[account_description]" no_lang="1"/>
</hbox>
<url-email id="${row}[account_email]" readonly="true" no_lang="1" class="adminOverflowEllipsis"/>
</vbox>
<vbox class="adminCol2">
<date id="${row}[account_created]" readonly="true"/>
<date id="${row}[account_modified]" readonly="true"/>
</vbox>
</row>
</rows>
</grid>
</template>
<template id="admin.index" template="" lang="" group="0" version="1.9.001"> <template id="admin.index" template="" lang="" group="0" version="1.9.001">
<tree autoloading="admin_ui::ajax_tree" id="tree" onclick="app.admin.run" parent_node="admin_tree_target" std_images="bullet"/> <tree autoloading="admin_ui::ajax_tree" id="tree" onclick="app.admin.run" parent_node="admin_tree_target" std_images="bullet"/>
<description id="plus_button_container"/> <description id="plus_button_container"/>
<nextmatch id="nm" template="admin.index.rows" header_right="admin.index.add"/> <nextmatch id="nm" template="admin.index.rows" header_right="admin.index.add"/>
<nextmatch id="groups" template="admin.index.group"/>
<iframe frameborder="1" height="100%" id="iframe" scrolling="auto" width="100%" disabled="true"/> <iframe frameborder="1" height="100%" id="iframe" scrolling="auto" width="100%" disabled="true"/>
<box id="ajax_target" height="99%" disabled="true"/>
</template> </template>
</overlay> </overlay>

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE overlay PUBLIC "-//EGroupware GmbH//eTemplate 2//EN" "http://www.egroupware.org/etemplate2.dtd">
<!-- $Id$ -->
<overlay>
<template id="admin.site-config" template="" lang="" group="0" version="16.1">
<grid border="1" width="100%">
<columns>
<column width = "120"/>
<column/>
</columns>
<rows>
<row class="dialogHeadbar" >
<hbox span="all" width="100%">
<button id="save"/>
<button id="cancel" />
</hbox>
</row>
<row>
<template template="@template" width="100%"/>
</row>
</rows>
</grid>
</template>
</overlay>