Merge pull request #17228 from mattwire/fixmultilingualoptiongroups
[civicrm-core.git] / templates / CRM / Core / I18n / Form.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | Copyright CiviCRM LLC. All rights reserved. |
4 | |
5 | This work is published under the GNU AGPLv3 license with some |
6 | permitted exceptions and without any warranty. For full license |
7 | and copyright information, see https://civicrm.org/licensing |
8 +--------------------------------------------------------------------+
9 *}
10 <fieldset>
11 <dl>
12 {foreach from=$locales item=locale}
13 {assign var='elem' value="$field $locale"|replace:' ':'_'}
14 <dt>{$form.$elem.label}</dt><dd>{$form.$elem.html}</dd>
15 {/foreach}
16 </dl>
17 </fieldset>
18 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="bottom"}</div>