Merge pull request #3113 from deepak-srivastava/CRM-14431
[civicrm-core.git] / templates / CRM / Admin / Page / ParticipantStatus.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
819d0d41 3 | CiviCRM version 4.5 |
6a488035 4 +--------------------------------------------------------------------+
819d0d41 5 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
6 +--------------------------------------------------------------------+
7 | This file is a part of CiviCRM. |
8 | |
9 | CiviCRM is free software; you can copy, modify, and distribute it |
10 | under the terms of the GNU Affero General Public License |
11 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
12 | |
13 | CiviCRM is distributed in the hope that it will be useful, but |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
16 | See the GNU Affero General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU Affero General Public |
19 | License and the CiviCRM Licensing Exception along |
20 | with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25*}
26{if $action eq 1 or $action eq 2 or $action eq 8}
27 {include file="CRM/Admin/Form/ParticipantStatus.tpl"}
28{else}
29 <div id="help">{ts}Manage event participant statuses below. Enable selected statuses to allow event waitlisting and/or participant approval.{/ts} {help id="id-disabled_statuses" file="CRM/Admin/Page/ParticipantStatus.hlp"}</div>
30
31<div class="crm-section participant-status">
32 {strip}
33 {* handle enable/disable actions*}
4d17a233
CW
34 {include file="CRM/common/enableDisableApi.tpl"}
35 {include file="CRM/common/crmeditable.tpl"}
6a488035
TO
36 <table cellpadding="0" cellspacing="0" border="0">
37 <thead class="sticky">
38 <th>{ts}Label{/ts}</th>
39 <th>{ts}Name (Status ID){/ts}</th>
40 <th>{ts}Class{/ts}</th>
41 <th>{ts}Reserved?{/ts}</th>
42 <th>{ts}Active?{/ts}</th>
43 <th>{ts}Counted?{/ts}</th>
44 <th>{ts}Weight{/ts}</th>
45 <th>{ts}Visibility{/ts}</th>
46 <th></th>
47 </thead>
48 {foreach from=$rows item=row}
4d17a233
CW
49 <tr id="particpant_status_type-{$row.id}" class="crm-entity crm-participant_{$row.id} {cycle values="odd-row,even-row"} {$row.class}{if NOT $row.is_active} disabled{/if}">
50 <td class="crm-particpant-label crm-editable" data-field="label">{$row.label}</td>
6a488035
TO
51 <td class="crm-particpant-name">{$row.name} ({$row.id})</td>
52 <td class="crm-particpant-class">{$row.class}</td>
53 <td class="yes-no crm-participant-is_reserved">{if $row.is_reserved}<img src="{$config->resourceBase}i/check.gif" alt="{ts}Reserved{/ts}" />{/if}</td>
54 <td id="row_{$row.id}_status" class="crm-participant-is_active">{if $row.is_active eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if}</td>
55 <td class="yes-no crm-participant-is_counted">{if $row.is_counted} <img src="{$config->resourceBase}i/check.gif" alt="{ts}Counted{/ts}" />{/if}</td>
56 <td class="crm-particpant-weight">{$row.weight}</td>
57 <td class="crm-particpant-visibility">{$row.visibility}</td>
58 <td>{$row.action|replace:'xx':$row.id}</td>
59 </tr>
60 {/foreach}
61 </table>
62 {/strip}
63
64 {if $action ne 1 and $action ne 2}
65 <div class="action-link">
66 <a href="{crmURL q="action=add&reset=1"}" class="button"><span><div class="icon add-icon"></div>{ts}Add Participant Status{/ts}</span></a>
67 </div>
68 {/if}
69</div>
232624b1 70{/if}