dev/translation#65 Further remove moneyValueFormat
[civicrm-core.git] / templates / CRM / Admin / Form / ParticipantStatusType.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 <div class="crm-block crm-form-block crm-participant-status-form-block">
11 <fieldset>
12 <legend>
13 {if $action eq 1}{ts}New Participant Status{/ts}{elseif $action eq 2}{ts}Edit Participant Status{/ts}{else}{ts}Delete Participant Status{/ts}{/if}
14 </legend>
15 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="top"}</div>
16 {if $action eq 8}
17 <div class="messages status no-popup">
18 {icon icon="fa-info-circle"}{/icon}
19 {ts}WARNING: Deleting this Participant Status will remove all of its settings.{/ts} {ts}Do you want to continue?{/ts}
20 </div>
21 <div>{include file="CRM/common/formButtons.tpl"}
22 </div>
23 {else}
24 <table class="form-layout-compressed">
25 <tr class="crm-participant-status-form-block-name">
26 <td class="label">{$form.name.label}</td>
27 <td>{$form.name.html}<br />
28 <span class="description">{ts}Name of this status type, for use in the code.{/ts}</span></td>
29 </tr>
30
31 <tr class="crm-participant-status-form-block-label">
32 <td class="label">{$form.label.label}{if $action == 2} {include file='CRM/Core/I18n/Dialog.tpl' table='civicrm_participant_status_type' field='label' id=$id}{/if}</td>
33 <td>{$form.label.html}<br />
34 <span class="description">{ts}Display label for this status.{/ts}</span></td>
35 </tr>
36
37 <tr class="crm-participant-status-form-block-class">
38 <td class="label">{$form.class.label}</td>
39 <td>{$form.class.html}<br />
40 <span class="description">{ts}The general class of this status. Participant counts are grouped by class on the CiviEvent Dashboard. Participants with a 'Pending' class status will be moved to 'Expired' status if Pending Participant Hours has elapsed (when the ParticipantProcessor.php background processing script is run).{/ts}</span></td>
41 </tr>
42
43 <tr class="crm-participant-status-form-block-is_reserved">
44 <td class="label">{$form.is_reserved.label}</td>
45 <td>{$form.is_reserved.html}</td>
46 </tr>
47 <tr class="crm-participant-status-form-block-is_active">
48 <td class="label">{$form.is_active.label}</td>
49 <td>{$form.is_active.html}</td>
50 </tr>
51 <tr class="crm-participant-status-form-block-is_counted">
52 <td class="label">{$form.is_counted.label}</td>
53 <td>{$form.is_counted.html}<br />
54 <span class="description">{ts}Should a person with this status be counted as a participant for the purpose of controlling the Maximum Number of Participants?{/ts}</td>
55 </tr>
56
57 <tr class="crm-participant-status-form-block-weight">
58 <td class="label">{$form.weight.label}</td>
59 <td>{$form.weight.html}</td>
60 </tr>
61
62 <tr class="crm-participant-status-form-block-visibility_id">
63 <td class="label">{$form.visibility_id.label}</td>
64 <td>{$form.visibility_id.html}<br />
65 <span class="description">{ts}If you allow users to select a Participant Status by including that field on a profile - only statuses with 'Public' visibility are listed.{/ts}</td>
66 </tr>
67 </table>
68 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="bottom"}</div>
69 {/if}
70 <div class="spacer"></div>
71 </fieldset>
72 </div>