Merge pull request #18056 from pradpnayak/invopdf
[civicrm-core.git] / templates / CRM / Admin / Form / PreferencesDate.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 {* this template is used for adding/editing location type *}
11 <div class="crm-block crm-form-block crm-preferences-date-form-block">
12 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="top"}</div>
13 <table class='form-layout-compressed'>
14 <tr class="crm-preferences-date-form-block-name">
15 <td class="label">{$form.name.label}</td><td>{$form.name.html}</td>
16 </tr>
17 <tr class="crm-preferences-date-form-block-description">
18 <td class="label">{$form.description.label}</td><td>{$form.description.html}</td>
19 </tr>
20 <tr class="crm-preferences-date-form-block-date_format">
21 <td class="label">{$form.date_format.label}</td><td>{$form.date_format.html}</td>
22 </tr>
23 {if $form.time_format.label}
24 <tr class="crm-preferences-date-form-block-time_format">
25 <td class="label">{$form.time_format.label}</td><td>{$form.time_format.html}</td>
26 </tr>
27 {/if}
28 <tr class="crm-preferences-date-form-block-start">
29 <td class="label">{$form.start.label}</td><td>{$form.start.html}</td>
30 </tr>
31 <tr class="crm-preferences-date-form-block-end">
32 <td class="label">{$form.end.label}</td><td>{$form.end.html}</td>
33 </tr>
34 </table>
35 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="bottom"}</div>
36 </div>