| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {**********************************************************************
- * KerioEmail product developed. (2017-08-24)
- * *
- *
- * CREATED BY THURDATA -> http://thurdata.com
- * CONTACT -> contact@thurdata.com
- *
- *
- * This software is furnished under a license and may be used and copied
- * only in accordance with the terms of such license and with the
- * inclusion of the above copyright notice. This software or any other
- * copies thereof may not be provided or otherwise made available to any
- * other person. No title to and ownership of the software is hereby
- * transferred.
- *
- *
- **********************************************************************}
- {**
- * @autor ThurData <info@thurdata.ch>
- *}
- <div class="row-fluid">
- <div class="box light" id="{$elementId}">
- <div class="box-title tabbable-line" style="border-bottom: 1px solid #eee!important;">
- {***CONTAINER*HEADER*TITLE***********************************************************}
- <div class="caption" style="display: inline-block!important; max-width: 30%;">
- <i class="fa fa-th font-red-thunderbird"></i>
- <span class="caption-subject bold font-red-thunderbird uppercase">
- {$MGLANG->controlerContextT('title')}
- </span>
- </div>
- {assign var="firstArrKey" value=$customTplVars.topLine|array_keys}
- {if $customTplVars.topLine}
- <ul class="lu-nav nav-tabs" style="display: inline-block!important; max-width: 70%;">
- {foreach from=$customTplVars.topLine key=tplKey item=tplValue}
- <li {if $tplKey === $firstArrKey[0]} class="active" {/if}><a data-toggle="tab" href="#contTab{$tplValue->getId()}">{$tplValue->getCustomTplVarsValue('categoryName')}</a></li>
- {/foreach}
- </ul>
- {/if}
- </div>
- {***DATATABLES*BODY*****************************************************************}
- <div class="lu-row">
- <div class="lu-col-md-12">
- <div class="box-body">
- <div class="tab-content">
- {foreach from=$customTplVars.topLine key=tplKey item=tplValue}
- <div id="contTab{$tplValue->getId()}" class="tab-pane {if $tplKey === $firstArrKey[0]} active {/if}">
- {$tplValue->getHtml()}
- </div>
- {/foreach}
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
-
- {if $scriptHtml}
- <script type="text/javascript">
- {$scriptHtml}
- </script>
- {/if}
|