[ Index ]

PHP Cross Reference of vtigercrm-6.1.0

title

Body

[close]

/layouts/vlayout/modules/Accounts/ -> AccountHierarchy.tpl (source)

   1  {*<!--
   2  /*********************************************************************************

   3    ** The contents of this file are subject to the vtiger CRM Public License Version 1.0

   4     * ("License"); You may not use this file except in compliance with the License

   5     * The Original Code is:  vtiger CRM Open Source

   6     * The Initial Developer of the Original Code is vtiger.

   7     * Portions created by vtiger are Copyright (C) vtiger.

   8     * All Rights Reserved.

   9    *

  10   ********************************************************************************/
  11  -->*}
  12  {strip}
  13  <div id="accountHierarchyContainer" class="modelContainer" style='min-width:750px'>
  14      <div class="modal-header">
  15          <button class="close" data-dismiss="modal" title="{vtranslate('LBL_CLOSE')}">x</button>
  16          <h3>{vtranslate('LBL_SHOW_ACCOUNT_HIERARCHY', $MODULE)}</h3>
  17      </div>
  18      <div class="modal-body">
  19              <div id ="hierarchyScroll" style="margin-right: 8px;">
  20          <table class="table table-bordered">
  21              <thead>
  22                  <tr class="blockHeader">
  23                  {foreach item=HEADERNAME from=$ACCOUNT_HIERARCHY['header']}
  24                      <th>{vtranslate($HEADERNAME, $MODULE)}</th>
  25                  {/foreach}
  26                  </tr>
  27              </thead>
  28          {foreach item=ENTRIES from=$ACCOUNT_HIERARCHY['entries']}
  29              <tbody>
  30                  <tr>
  31                  {foreach item=LISTFIELDS from=$ENTRIES}
  32                      <td>{$LISTFIELDS}</td>
  33                  {/foreach}
  34                  </tr>
  35              </tbody>
  36          {/foreach}
  37          </table>
  38      </div>
  39          </div>
  40          <div class="modal-footer">
  41              <div class=" pull-right cancelLinkContainer">
  42                  <button class="btn btn-primary" type="reset" data-dismiss="modal"><strong>{vtranslate('LBL_CLOSE', $MODULE)}</strong></button>
  43              </div>
  44          </div>
  45      </div>
  46      {/strip}


Generated: Fri Nov 28 20:08:37 2014 Cross-referenced by PHPXref 0.7.1