CRM-16761 - Form / UI fixes.
[civicrm-core.git] / templates / CRM / Event / Form / SelfSvcTransfer.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.7 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2015 |
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 <div class="crm-selfsvctransfer-form">
27 <table class="crm-selfsvctransfer-form-details">
28 <tr>
29 <th>{ts}Current<br />Participant{/ts}</th>
30 <th>{ts}Event{/ts}</th>
31 <th>{ts}Fee Level{/ts}</th>
32 <th>{ts}Amount{/ts}</th>
33 <th>{ts}Registered{/ts}</th>
34 <th>{ts}Status{/ts}</th>
35 <th>{ts}Role{/ts}</th>
36 </tr>
37 <tr class="crm-selfsvctransfer-form-details">
38 <td>{$details.name}</td>
39 <td>{$details.title}<br />{$details.event_start_date|truncate:10:''|crmDate}</td>
40 <td class="crm-participant-participant_fee_level">{$details.fee_level}</td>
41 <td class="right nowrap crm-paticipant-participant_fee_amount">{$details.fee_amount}</td>
42 <td>{$details.register_date|truncate:10:''|crmDate}</td>
43 <td>{$details.status}</td>
44 <td class="crm-participant-participant_role">{$details.role}</td>
45 </tr>
46 </table>
47 <div class="crm-public-form-item crm-section selfsvctransfer-section">
48 <div class="crm-public-form-item crm-section selfsvctransfer-firstname-section">
49 <div class="label">{$form.first_name.label}</div>
50 <div class="content">{$form.first_name.html}</div>
51 <div class="clear"></div>
52 </div>
53 <div class="crm-public-form-item crm-section selfsvctransfer-lastname-section">
54 <div class="label">{$form.last_name.label}</div>
55 <div class="content">{$form.last_name.html}</div>
56 <div class="clear"></div>
57 </div>
58 <div class="crm-public-form-item crm-section selfsvctransfer-email-section">
59 <div class="label">{$form.email.label}</div>
60 <div class="content">{$form.email.html}</div>
61 <div class="clear"></div>
62 </div>
63 </div>
64 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="bottom"}</div>
65 </div>