Skip to content

Instantly share code, notes, and snippets.

@totten
Created October 15, 2019 00:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save totten/9c7176bbdfc63f88d423f026359f50fc to your computer and use it in GitHub Desktop.
Save totten/9c7176bbdfc63f88d423f026359f50fc to your computer and use it in GitHub Desktop.
Scan smarty templates for printed variable expressions
<?php
// Scan smarty templates for printed variable expressions
//
// usage: find templates/CRM/ -name '*.tpl' | cv scr tmp/smarty-extract.php
$files = explode("\n", file_get_contents('php://stdin'));
$exprs = [];
foreach ($files as $file) {
if (empty($file)) {
continue;
}
$tpl_source = file_get_contents($file);
$oldHead = preg_quote('{$', '/');
$oldFoot = preg_quote('}', '/');
$func = function ($m) use (&$exprs, $file) {
$exprs[] = [
'file' => $file,
'expr' => $m[0],
];
return $m[0];
};
preg_replace_callback("/{$oldHead}([^\{\}]+){$oldFoot}/", $func, $tpl_source);
}
fputcsv(STDOUT, array_keys($exprs[0]));
foreach ($exprs as $expr) {
fputcsv(STDOUT, $expr);
}
We can't make this file beautiful and searchable because it's too large.
file,expr
templates/CRM/ACL/Form/ACL.tpl,{$form.name.label}
templates/CRM/ACL/Form/ACL.tpl,{$form.name.html}
templates/CRM/ACL/Form/ACL.tpl,{$form.entity_id.label}
templates/CRM/ACL/Form/ACL.tpl,{$form.entity_id.html}
templates/CRM/ACL/Form/ACL.tpl,{$form.operation.label}
templates/CRM/ACL/Form/ACL.tpl,{$form.operation.html}
templates/CRM/ACL/Form/ACL.tpl,{$form.object_type.label}
templates/CRM/ACL/Form/ACL.tpl,{$form.object_type.html}
templates/CRM/ACL/Form/ACL.tpl,{$form.object_type.name}
templates/CRM/ACL/Form/ACL.tpl,{$form.group_id.label}
templates/CRM/ACL/Form/ACL.tpl,{$form.group_id.html}
templates/CRM/ACL/Form/ACL.tpl,{$form.uf_group_id.label}
templates/CRM/ACL/Form/ACL.tpl,{$form.uf_group_id.html}
templates/CRM/ACL/Form/ACL.tpl,{$form.custom_group_id.label}
templates/CRM/ACL/Form/ACL.tpl,{$form.custom_group_id.html}
templates/CRM/ACL/Form/ACL.tpl,{$form.event_id.label}
templates/CRM/ACL/Form/ACL.tpl,{$form.event_id.html}
templates/CRM/ACL/Form/ACL.tpl,{$form.is_active.label}
templates/CRM/ACL/Form/ACL.tpl,{$form.is_active.html}
templates/CRM/ACL/Form/ACLBasic.tpl,{$form.entity_id.label}
templates/CRM/ACL/Form/ACLBasic.tpl,{$form.entity_id.html}
templates/CRM/ACL/Form/ACLBasic.tpl,{$form.object_table.label}
templates/CRM/ACL/Form/ACLBasic.tpl,{$form.object_table.html}
templates/CRM/ACL/Form/ACLBasic.tpl,{$form.buttons.html}
templates/CRM/ACL/Form/EntityRole.tpl,{$form.acl_role_id.label}
templates/CRM/ACL/Form/EntityRole.tpl,{$form.acl_role_id.html}
templates/CRM/ACL/Form/EntityRole.tpl,{$form.entity_id.label}
templates/CRM/ACL/Form/EntityRole.tpl,{$form.entity_id.html}
templates/CRM/ACL/Form/EntityRole.tpl,{$form.is_active.label}
templates/CRM/ACL/Form/EntityRole.tpl,{$form.is_active.html}
templates/CRM/ACL/Form/WordPress/Permissions.tpl,{$role_value}
templates/CRM/ACL/Form/WordPress/Permissions.tpl,{$row.label}
templates/CRM/ACL/Form/WordPress/Permissions.tpl,{$row.desc}
templates/CRM/ACL/Form/WordPress/Permissions.tpl,{$form.$role_name.$perm_name.html}
templates/CRM/ACL/Page/ACL.tpl,{$aclID}
templates/CRM/ACL/Page/ACL.tpl,{$row.class}
templates/CRM/ACL/Page/ACL.tpl,{$row.entity}
templates/CRM/ACL/Page/ACL.tpl,{$row.operation}
templates/CRM/ACL/Page/ACL.tpl,{$row.object_name}
templates/CRM/ACL/Page/ACL.tpl,{$row.object}
templates/CRM/ACL/Page/ACL.tpl,{$row.name}
templates/CRM/ACL/Page/ACL.tpl,{$aclID}
templates/CRM/ACL/Page/ACL.tpl,{$row.action|replace:'xx':$aclID}
templates/CRM/ACL/Page/ACL.tpl,{$config->resourceBase}
templates/CRM/ACL/Page/ACLBasic.tpl,{$row.class}
templates/CRM/ACL/Page/ACLBasic.tpl,{$row.entity}
templates/CRM/ACL/Page/ACLBasic.tpl,{$row.object_table}
templates/CRM/ACL/Page/ACLBasic.tpl,{$row.action}
templates/CRM/ACL/Page/ACLBasic.tpl,{$config->resourceBase}
templates/CRM/ACL/Page/EntityRole.tpl,{$row.id}
templates/CRM/ACL/Page/EntityRole.tpl,{$row.class}
templates/CRM/ACL/Page/EntityRole.tpl,{$row.acl_role}
templates/CRM/ACL/Page/EntityRole.tpl,{$row.entity}
templates/CRM/ACL/Page/EntityRole.tpl,{$row.id}
templates/CRM/ACL/Page/EntityRole.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/ACL/Page/EntityRole.tpl,{$config->resourceBase}
templates/CRM/Activity/Calendar/ICal.tpl,{$timezone}
templates/CRM/Activity/Calendar/ICal.tpl,{$activity->id}
templates/CRM/Activity/Calendar/ICal.tpl,{$activity->subject|crmICalText}
templates/CRM/Activity/Calendar/ICal.tpl,"{$smarty.now|date_format:'%Y-%m-%d %H:%M:%S'|crmICalDate}"
templates/CRM/Activity/Calendar/ICal.tpl,{$activity->activity_date_time|crmICalDate}
templates/CRM/Activity/Calendar/ICal.tpl,{$activity->duration}
templates/CRM/Activity/Calendar/ICal.tpl,{$activity->location|crmICalText}
templates/CRM/Activity/Calendar/ICal.tpl,{$organizer|crmICalText}
templates/CRM/Activity/Calendar/ICal.tpl,{$contact.display_name|crmICalText}
templates/CRM/Activity/Calendar/ICal.tpl,{$contact.email|crmICalText}
templates/CRM/Activity/Form/Activity.tpl,{$activityTypeDescription}
templates/CRM/Activity/Form/Activity.tpl,{$delName}
templates/CRM/Activity/Form/Activity.tpl,{$activityTypeDescription}
templates/CRM/Activity/Form/Activity.tpl,{$form.activity_type_id.label}
templates/CRM/Activity/Form/Activity.tpl,{$form.activity_type_id.html}
templates/CRM/Activity/Form/Activity.tpl,{$surveyTitle}
templates/CRM/Activity/Form/Activity.tpl,{$form.source_contact_id.label}
templates/CRM/Activity/Form/Activity.tpl,{$form.source_contact_id.html}
templates/CRM/Activity/Form/Activity.tpl,{$form.target_contact_id.label}
templates/CRM/Activity/Form/Activity.tpl,{$form.target_contact_id.html}
templates/CRM/Activity/Form/Activity.tpl,{$form.separation.label}
templates/CRM/Activity/Form/Activity.tpl,{$form.separation.html}
templates/CRM/Activity/Form/Activity.tpl,{$form.assignee_contact_id.label}
templates/CRM/Activity/Form/Activity.tpl,{$form.assignee_contact_id.html}
templates/CRM/Activity/Form/Activity.tpl,{$form.subject.label}
templates/CRM/Activity/Form/Activity.tpl,{$form.subject.html}
templates/CRM/Activity/Form/Activity.tpl,{$form.engagement_level.label}
templates/CRM/Activity/Form/Activity.tpl,{$form.engagement_level.html}
templates/CRM/Activity/Form/Activity.tpl,{$form.location.label}
templates/CRM/Activity/Form/Activity.tpl,{$form.location.html|crmAddClass:huge}
templates/CRM/Activity/Form/Activity.tpl,{$form.activity_date_time.label}
templates/CRM/Activity/Form/Activity.tpl,{$form.activity_date_time.html}
templates/CRM/Activity/Form/Activity.tpl,{$form.activity_date_time.value|crmDate}
templates/CRM/Activity/Form/Activity.tpl,{$form.duration.label}
templates/CRM/Activity/Form/Activity.tpl,{$form.duration.html}
templates/CRM/Activity/Form/Activity.tpl,{$form.status_id.label}
templates/CRM/Activity/Form/Activity.tpl,{$form.status_id.html}
templates/CRM/Activity/Form/Activity.tpl,{$form.details.label}
templates/CRM/Activity/Form/Activity.tpl,{$form.details.html}
templates/CRM/Activity/Form/Activity.tpl,{$form.details.html|crmStripAlternatives|nl2br}
templates/CRM/Activity/Form/Activity.tpl,{$form.details.html|crmStripAlternatives}
templates/CRM/Activity/Form/Activity.tpl,{$form.priority_id.label}
templates/CRM/Activity/Form/Activity.tpl,{$form.priority_id.html}
templates/CRM/Activity/Form/Activity.tpl,{$form.result.label}
templates/CRM/Activity/Form/Activity.tpl,{$form.result.html}
templates/CRM/Activity/Form/Activity.tpl,{$form.tag.label}
templates/CRM/Activity/Form/Activity.tpl,{$form.tag.html}
templates/CRM/Activity/Form/Activity.tpl,{$form.formClass}
templates/CRM/Activity/Form/Activity.tpl,{$activityId}
templates/CRM/Activity/Form/Activity.tpl,{$doNotNotifyAssigneeFor|@json_encode}
templates/CRM/Activity/Form/ActivityLinks.tpl,{$act.url}
templates/CRM/Activity/Form/ActivityLinks.tpl,{$act.icon}
templates/CRM/Activity/Form/ActivityLinks.tpl,{$act.label}
templates/CRM/Activity/Form/ActivityLinks.tpl,{$k}
templates/CRM/Activity/Form/ActivityLinks.tpl,{$act.url}
templates/CRM/Activity/Form/ActivityLinks.tpl,{$act.icon}
templates/CRM/Activity/Form/ActivityLinks.tpl,{$act.label}
templates/CRM/Activity/Form/ActivityLinks.tpl,{$link.url}
templates/CRM/Activity/Form/ActivityLinks.tpl,{$link.title|escape}
templates/CRM/Activity/Form/ActivityLinks.tpl,{$link.class}
templates/CRM/Activity/Form/ActivityLinks.tpl,{$link.img}
templates/CRM/Activity/Form/ActivityLinks.tpl,{$link.title|escape}
templates/CRM/Activity/Form/ActivityLinks.tpl,{$link.name}
templates/CRM/Activity/Form/ActivityView.tpl,{$activityTypeDescription}
templates/CRM/Activity/Form/ActivityView.tpl,{$values.source_contact}
templates/CRM/Activity/Form/ActivityView.tpl,{$values.target_contact_value}
templates/CRM/Activity/Form/ActivityView.tpl,{$values.mailingId}
templates/CRM/Activity/Form/ActivityView.tpl,{$values.subject}
templates/CRM/Activity/Form/ActivityView.tpl,{$values.campaign}
templates/CRM/Activity/Form/ActivityView.tpl,{$values.engagement_level}
templates/CRM/Activity/Form/ActivityView.tpl,"{$values.activity_date_time|crmDate }"
templates/CRM/Activity/Form/ActivityView.tpl,{$openreport|@count}
templates/CRM/Activity/Form/ActivityView.tpl,{$opens.date}
templates/CRM/Activity/Form/ActivityView.tpl,{$clickreport|@count}
templates/CRM/Activity/Form/ActivityView.tpl,{$clicks.date}
templates/CRM/Activity/Form/ActivityView.tpl,{$clicks.url}
templates/CRM/Activity/Form/ActivityView.tpl,"{$clicks.url|truncate:40:' .... ':true:true}"
templates/CRM/Activity/Form/ActivityView.tpl,{$mailingReport.mailing.body_text|mb_truncate:30|escape|nl2br}
templates/CRM/Activity/Form/ActivityView.tpl,{$textViewURL}
templates/CRM/Activity/Form/ActivityView.tpl,{$mailingReport.mailing.body_html|mb_truncate:30|escape|nl2br}
templates/CRM/Activity/Form/ActivityView.tpl,{$htmlViewURL}
templates/CRM/Activity/Form/ActivityView.tpl,{$mailingReport.mailing.attachment}
templates/CRM/Activity/Form/ActivityView.tpl,{$values.details|crmStripAlternatives|nl2br}
templates/CRM/Activity/Form/ActivityView.tpl,{$values.attachment}
templates/CRM/Activity/Form/FollowUp.tpl,{$type}
templates/CRM/Activity/Form/FollowUp.tpl,{$form.followup_activity_type_id.html}
templates/CRM/Activity/Form/FollowUp.tpl,{$form.followup_date.html}
templates/CRM/Activity/Form/FollowUp.tpl,{$type}
templates/CRM/Activity/Form/FollowUp.tpl,{$form.followup_activity_subject.label}
templates/CRM/Activity/Form/FollowUp.tpl,{$form.followup_activity_subject.html|crmAddClass:huge}
templates/CRM/Activity/Form/FollowUp.tpl,{$type}
templates/CRM/Activity/Form/FollowUp.tpl,{$form.followup_assignee_contact_id.label}
templates/CRM/Activity/Form/FollowUp.tpl,{$form.followup_assignee_contact_id.html}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.activity_role.html}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.activity_type_id.label}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.activity_type_id.html}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.activity_survey_id.label}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.activity_survey_id.html}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.activity_engagement_level.label}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.activity_engagement_level.html}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.parent_id.html}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.followup_parent_id.html}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.activity_tags.label}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.activity_tags.html}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.activity_text.label}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.activity_text.html|crmAddClass:big}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.activity_option.html}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.status_id.label}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.status_id.html}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.priority_id.label}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.priority_id.html}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.activity_test.label}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.activity_test.html}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.activity_location.label}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.activity_location.html}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.activity_result.label}
templates/CRM/Activity/Form/Search/Common.tpl,{$form.activity_result.html}
templates/CRM/Activity/Form/Search.tpl,{$form.sort_name.label}
templates/CRM/Activity/Form/Search.tpl,{$form.sort_name.html|crmAddClass:'twenty'}
templates/CRM/Activity/Form/Search.tpl,{$form.formClass}
templates/CRM/Activity/Form/Selector.tpl,{$form.toggleSelect.html}
templates/CRM/Activity/Form/Selector.tpl,{$sort->_response.$key.link}
templates/CRM/Activity/Form/Selector.tpl,{$header.name}
templates/CRM/Activity/Form/Selector.tpl,{$row.activity_id}
templates/CRM/Activity/Form/Selector.tpl,{$row.class}
templates/CRM/Activity/Form/Selector.tpl,{$form.$cbName.html}
templates/CRM/Activity/Form/Selector.tpl,{$row.activity_type}
templates/CRM/Activity/Form/Selector.tpl,{$row.repeat}
templates/CRM/Activity/Form/Selector.tpl,{$row.activity_subject}
templates/CRM/Activity/Form/Selector.tpl,{$row.source_contact_name}
templates/CRM/Activity/Form/Selector.tpl,{$row.source_contact_name}
templates/CRM/Activity/Form/Selector.tpl,{$row.mailingId}
templates/CRM/Activity/Form/Selector.tpl,{$row.recipients}
templates/CRM/Activity/Form/Selector.tpl,{$row.recipients}
templates/CRM/Activity/Form/Selector.tpl,{$targetName}
templates/CRM/Activity/Form/Selector.tpl,{$assigneeName}
templates/CRM/Activity/Form/Selector.tpl,{$row.activity_date_time|crmDate}
templates/CRM/Activity/Form/Selector.tpl,{$row.activity_status}
templates/CRM/Activity/Form/Selector.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Activity/Form/Task/AddToTag.tpl,{$tag_val.html}
templates/CRM/Activity/Form/Task/Batch.tpl,{$form._qf_Batch_refresh.html}
templates/CRM/Activity/Form/Task/Batch.tpl,{$fTitle}
templates/CRM/Activity/Form/Task/Batch.tpl,{$config->resourceBase}
templates/CRM/Activity/Form/Task/Batch.tpl,{$field.name}
templates/CRM/Activity/Form/Task/Batch.tpl,{$field.title}
templates/CRM/Activity/Form/Task/Batch.tpl,{$activityId}
templates/CRM/Activity/Form/Task/Batch.tpl,{$contactDetails.$activityId.$fName}
templates/CRM/Activity/Form/Task/Batch.tpl,{$form.field.$activityId.$n.html}
templates/CRM/Activity/Form/Task/Batch.tpl,{$form._qf_Batch_refresh.html}
templates/CRM/Activity/Form/Task/FileOnCase.tpl,{$form.unclosed_case_id.label}
templates/CRM/Activity/Form/Task/FileOnCase.tpl,{$form.unclosed_case_id.html}
templates/CRM/Activity/Form/Task/PickOption.tpl,{$form.with_contact.label}
templates/CRM/Activity/Form/Task/PickOption.tpl,{$form.with_contact.html}
templates/CRM/Activity/Form/Task/PickOption.tpl,{$form.assigned_to.label}
templates/CRM/Activity/Form/Task/PickOption.tpl,{$form.assigned_to.html}
templates/CRM/Activity/Form/Task/PickOption.tpl,{$form.created_by.label}
templates/CRM/Activity/Form/Task/PickOption.tpl,{$form.created_by.html}
templates/CRM/Activity/Form/Task/PickProfile.tpl,{$form.uf_group_id.label}
templates/CRM/Activity/Form/Task/PickProfile.tpl,{$form.uf_group_id.html}
templates/CRM/Activity/Form/Task/Print.tpl,{$row.activity_type}
templates/CRM/Activity/Form/Task/Print.tpl,{$row.activity_subject}
templates/CRM/Activity/Form/Task/Print.tpl,{$row.source_contact_name}
templates/CRM/Activity/Form/Task/Print.tpl,{$targetName}
templates/CRM/Activity/Form/Task/Print.tpl,{$assigneeName}
templates/CRM/Activity/Form/Task/Print.tpl,{$row.activity_date_time}
templates/CRM/Activity/Form/Task/Print.tpl,{$row.activity_status}
templates/CRM/Activity/Form/Task/RemoveFromTag.tpl,{$tag_val.html}
templates/CRM/Activity/Form/Task/SearchTaskHookSample.tpl,{$row.display_name}
templates/CRM/Activity/Form/Task/SearchTaskHookSample.tpl,{$row.subject}
templates/CRM/Activity/Form/Task/SearchTaskHookSample.tpl,{$row.activity_type}
templates/CRM/Activity/Form/Task/SearchTaskHookSample.tpl,{$row.activity_date}
templates/CRM/Activity/Form/Task.tpl,{$row.displayName}
templates/CRM/Activity/Import/Form/DataSource.tpl,{$form.uploadFile.label}
templates/CRM/Activity/Import/Form/DataSource.tpl,{$form.uploadFile.html}
templates/CRM/Activity/Import/Form/DataSource.tpl,{$form.skipColumnHeader.html}
templates/CRM/Activity/Import/Form/DataSource.tpl,{$form.skipColumnHeader.label}
templates/CRM/Activity/Import/Form/DataSource.tpl,{$form.fieldSeparator.label}
templates/CRM/Activity/Import/Form/DataSource.tpl,{$form.fieldSeparator.html}
templates/CRM/Activity/Import/Form/DataSource.tpl,{$form.savedMapping.html}
templates/CRM/Activity/Import/Form/MapField.tpl,{$initHideBoxes}
templates/CRM/Activity/Import/Form/MapTable.tpl,{$dataValues[$j][$i]}
templates/CRM/Activity/Import/Form/MapTable.tpl,{$mapper[$i]}
templates/CRM/Activity/Import/Form/MapTable.tpl,{$form.mapper[$i].html}
templates/CRM/Activity/Import/Form/MapTable.tpl,{$form.updateMapping.html}
templates/CRM/Activity/Import/Form/MapTable.tpl,{$form.updateMapping.label}
templates/CRM/Activity/Import/Form/MapTable.tpl,{$form.saveMapping.html}
templates/CRM/Activity/Import/Form/MapTable.tpl,{$form.saveMapping.label}
templates/CRM/Activity/Import/Form/MapTable.tpl,{$form.saveMappingName.label}
templates/CRM/Activity/Import/Form/MapTable.tpl,{$form.saveMappingName.html}
templates/CRM/Activity/Import/Form/MapTable.tpl,{$form.saveMappingDesc.label}
templates/CRM/Activity/Import/Form/MapTable.tpl,{$form.saveMappingDesc.html}
templates/CRM/Activity/Import/Form/Preview.tpl,{$totalRowCount}
templates/CRM/Activity/Import/Form/Preview.tpl,{$invalidRowCount}
templates/CRM/Activity/Import/Form/Preview.tpl,{$downloadErrorRecordsUrl}
templates/CRM/Activity/Import/Form/Preview.tpl,{$conflictRowCount}
templates/CRM/Activity/Import/Form/Preview.tpl,{$downloadConflictRecordsUrl}
templates/CRM/Activity/Import/Form/Preview.tpl,{$validRowCount}
templates/CRM/Activity/Import/Form/Summary.tpl,{$dupeActionString}
templates/CRM/Activity/Import/Form/Summary.tpl,{$totalRowCount}
templates/CRM/Activity/Import/Form/Summary.tpl,{$invalidRowCount}
templates/CRM/Activity/Import/Form/Summary.tpl,{$downloadErrorRecordsUrl}
templates/CRM/Activity/Import/Form/Summary.tpl,{$unMatchCount}
templates/CRM/Activity/Import/Form/Summary.tpl,{$downloadMismatchRecordsUrl}
templates/CRM/Activity/Import/Form/Summary.tpl,{$conflictRowCount}
templates/CRM/Activity/Import/Form/Summary.tpl,{$downloadConflictRecordsUrl}
templates/CRM/Activity/Import/Form/Summary.tpl,{$duplicateRowCount}
templates/CRM/Activity/Import/Form/Summary.tpl,{$dupeActionString}
templates/CRM/Activity/Import/Form/Summary.tpl,{$downloadDuplicateRecordsUrl}
templates/CRM/Activity/Import/Form/Summary.tpl,{$validRowCount}
templates/CRM/Activity/Page/UserDashboard.tpl,{$row.activity_id}
templates/CRM/Activity/Page/UserDashboard.tpl,{$row.activity_id}
templates/CRM/Activity/Page/UserDashboard.tpl,{$row.activity_type}
templates/CRM/Activity/Page/UserDashboard.tpl,{$row.activity_subject|default:$no_subject}
templates/CRM/Activity/Page/UserDashboard.tpl,{$row.source_contact_name}
templates/CRM/Activity/Page/UserDashboard.tpl,{$name}
templates/CRM/Activity/Page/UserDashboard.tpl,{$row.activity_date_time|crmDate}
templates/CRM/Activity/Page/UserDashboard.tpl,{$row.activity_status}
templates/CRM/Activity/Selector/Activity.tpl,{$sort->_response.$key.link}
templates/CRM/Activity/Selector/Activity.tpl,{$header.name}
templates/CRM/Activity/Selector/Activity.tpl,{$row.class}
templates/CRM/Activity/Selector/Activity.tpl,{$row.activity_status_id}
templates/CRM/Activity/Selector/Activity.tpl,{$row.activity_type_id}
templates/CRM/Activity/Selector/Activity.tpl,{$row.activity_id}
templates/CRM/Activity/Selector/Activity.tpl,{$row.activity_type_id}
templates/CRM/Activity/Selector/Activity.tpl,{$row.activity_type}
templates/CRM/Activity/Selector/Activity.tpl,{$row.subject}
templates/CRM/Activity/Selector/Activity.tpl,{$row.source_contact_name}
templates/CRM/Activity/Selector/Activity.tpl,{$row.source_contact_name}
templates/CRM/Activity/Selector/Activity.tpl,{$row.mailingId}
templates/CRM/Activity/Selector/Activity.tpl,{$row.recipients}
templates/CRM/Activity/Selector/Activity.tpl,{$row.recipients}
templates/CRM/Activity/Selector/Activity.tpl,{$targetName}
templates/CRM/Activity/Selector/Activity.tpl,{$assigneeName}
templates/CRM/Activity/Selector/Activity.tpl,{$row.activity_date_time|crmDate}
templates/CRM/Activity/Selector/Activity.tpl,{$row.status_id}
templates/CRM/Activity/Selector/Activity.tpl,{$row.status}
templates/CRM/Activity/Selector/Activity.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Activity/Selector/Selector.tpl,{$context}
templates/CRM/Activity/Selector/Selector.tpl,{$form.activity_type_filter_id.label}
templates/CRM/Activity/Selector/Selector.tpl,{$form.activity_type_filter_id.html|crmAddClass:medium}
templates/CRM/Activity/Selector/Selector.tpl,{$form.activity_type_exclude_filter_id.label}
templates/CRM/Activity/Selector/Selector.tpl,{$form.activity_type_exclude_filter_id.html|crmAddClass:medium}
templates/CRM/Activity/Selector/Selector.tpl,{$form.status_id.html|crmAddClass:medium}
templates/CRM/Activity/Selector/Selector.tpl,{$context}
templates/CRM/Activity/Selector/Selector.tpl,{$context}
templates/CRM/Activity/Selector/Selector.tpl,{$context}
templates/CRM/Activity/Selector/Selector.tpl,{$status.value}
templates/CRM/Activity/Selector/Selector.tpl,{$status.color}
templates/CRM/Admin/Form/CMSUser.tpl,{$config->resourceBase}
templates/CRM/Admin/Form/ContactType.tpl,{$form.label.label}
templates/CRM/Admin/Form/ContactType.tpl,{$form.label.html}
templates/CRM/Admin/Form/ContactType.tpl,{$form.parent_id.label}
templates/CRM/Admin/Form/ContactType.tpl,{$form.parent_id.html}
templates/CRM/Admin/Form/ContactType.tpl,{$contactTypeName}
templates/CRM/Admin/Form/ContactType.tpl,{$form.image_URL.label}
templates/CRM/Admin/Form/ContactType.tpl,{$form.image_URL.html|crmAddClass:'huge40'}
templates/CRM/Admin/Form/ContactType.tpl,{$form.description.label}
templates/CRM/Admin/Form/ContactType.tpl,{$form.description.html}
templates/CRM/Admin/Form/ContactType.tpl,{$form.is_active.label}
templates/CRM/Admin/Form/ContactType.tpl,{$form.is_active.html}
templates/CRM/Admin/Form/Extensions.tpl,{$title}
templates/CRM/Admin/Form/Job.tpl,{$form.name.label}
templates/CRM/Admin/Form/Job.tpl,{$form.name.html}
templates/CRM/Admin/Form/Job.tpl,{$form.description.label}
templates/CRM/Admin/Form/Job.tpl,{$form.description.html}
templates/CRM/Admin/Form/Job.tpl,{$form.run_frequency.label}
templates/CRM/Admin/Form/Job.tpl,{$form.run_frequency.html}
templates/CRM/Admin/Form/Job.tpl,{$entity}
templates/CRM/Admin/Form/Job.tpl,{$entity}
templates/CRM/Admin/Form/Job.tpl,{$form.api_action.html}
templates/CRM/Admin/Form/Job.tpl,{$form.parameters.label}
templates/CRM/Admin/Form/Job.tpl,{$form.parameters.html}
templates/CRM/Admin/Form/Job.tpl,{$form.scheduled_run_date.label}
templates/CRM/Admin/Form/Job.tpl,{$form.scheduled_run_date.html}
templates/CRM/Admin/Form/Job.tpl,{$form.is_active.html}
templates/CRM/Admin/Form/Job.tpl,{$form.is_active.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.label.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.label.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.description.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.description.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.is_default.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.is_default.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.label_type.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.label_type.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.paper_size.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.paper_size.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.font_name.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.font_name.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.orientation.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.orientation.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.font_size.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.font_size.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.metric.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.metric.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.font_style.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.bold.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.bold.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.italic.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.italic.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.paper_dimensions.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.NX.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.NX.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.NY.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.NY.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.lMargin.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.lMargin.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.tMargin.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.tMargin.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.width.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.width.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.height.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.height.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.SpaceX.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.SpaceX.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.SpaceY.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.SpaceY.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.lPadding.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.lPadding.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.tPadding.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.tPadding.html}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.weight.label}
templates/CRM/Admin/Form/LabelFormats.tpl,{$form.weight.html}
templates/CRM/Admin/Form/LocationType.tpl,{$form.name.label}
templates/CRM/Admin/Form/LocationType.tpl,{$form.name.html}
templates/CRM/Admin/Form/LocationType.tpl,{$form.display_name.label}
templates/CRM/Admin/Form/LocationType.tpl,{$form.display_name.html}
templates/CRM/Admin/Form/LocationType.tpl,{$form.vcard_name.label}
templates/CRM/Admin/Form/LocationType.tpl,{$form.vcard_name.html}
templates/CRM/Admin/Form/LocationType.tpl,{$form.description.label}
templates/CRM/Admin/Form/LocationType.tpl,{$form.description.html}
templates/CRM/Admin/Form/LocationType.tpl,{$form.is_active.label}
templates/CRM/Admin/Form/LocationType.tpl,{$form.is_active.html}
templates/CRM/Admin/Form/LocationType.tpl,{$form.is_default.label}
templates/CRM/Admin/Form/LocationType.tpl,{$form.is_default.html}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.name.label}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.name.html}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.server.label}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.server.html}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.username.label}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.username.html}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.password.label}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.password.html}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.localpart.label}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.localpart.html}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.domain.label}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.domain.html}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.return_path.label}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.return_path.html}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.protocol.label}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.protocol.html}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.source.label}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.source.html}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.is_ssl.label}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.is_ssl.html}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.is_default.label}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.is_default.html}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.activity_status.label}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.activity_status.html}
templates/CRM/Admin/Form/MailSettings.tpl,{$form.formClass}
templates/CRM/Admin/Form/Mapping.tpl,{$form.name.label}
templates/CRM/Admin/Form/Mapping.tpl,{$form.name.html}
templates/CRM/Admin/Form/Mapping.tpl,{$form.description.label}
templates/CRM/Admin/Form/Mapping.tpl,{$form.description.html}
templates/CRM/Admin/Form/Mapping.tpl,{$form.mapping_type_id.label}
templates/CRM/Admin/Form/Mapping.tpl,{$form.mapping_type_id.html}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$form.msg_title.label}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$form.msg_title.html}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$form.file_type.label}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$form.file_type.html}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$form.msg_subject.label}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$form.msg_subject.html|crmAddClass:huge}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$form.file_id.label}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$form.file_id.html}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$attVal.fileID}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$attVal.url}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$attVal.cleanName}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$attVal.description}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$attVal.mime_type}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$attVal.cleanName}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$attVal.deleteURLArgs}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$form.msg_html.html|crmAddClass:huge}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$form.msg_text.html|crmAddClass:huge}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$form.pdf_format_id.label}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$form.pdf_format_id.html}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$form.is_active.label}
templates/CRM/Admin/Form/MessageTemplates.tpl,{$form.is_active.html}
templates/CRM/Admin/Form/Navigation.tpl,{$form.label.label}
templates/CRM/Admin/Form/Navigation.tpl,{$form.label.html}
templates/CRM/Admin/Form/Navigation.tpl,{$form.url.label}
templates/CRM/Admin/Form/Navigation.tpl,{$form.url.html}
templates/CRM/Admin/Form/Navigation.tpl,{$form.icon.label}
templates/CRM/Admin/Form/Navigation.tpl,{$form.icon.html}
templates/CRM/Admin/Form/Navigation.tpl,{$form.parent_id.label}
templates/CRM/Admin/Form/Navigation.tpl,{$form.parent_id.html}
templates/CRM/Admin/Form/Navigation.tpl,{$form.has_separator.label}
templates/CRM/Admin/Form/Navigation.tpl,{$form.has_separator.html}
templates/CRM/Admin/Form/Navigation.tpl,{$form.permission.label}
templates/CRM/Admin/Form/Navigation.tpl,{$form.permission.html}
templates/CRM/Admin/Form/Navigation.tpl,{$form.permission_operator.html}
templates/CRM/Admin/Form/Navigation.tpl,{$form.is_active.label}
templates/CRM/Admin/Form/Navigation.tpl,{$form.is_active.html}
templates/CRM/Admin/Form/Navigation.tpl,{$form.formClass}
templates/CRM/Admin/Form/OptionGroup.tpl,{$form.title.label}
templates/CRM/Admin/Form/OptionGroup.tpl,{$form.title.html}
templates/CRM/Admin/Form/OptionGroup.tpl,{$form.description.label}
templates/CRM/Admin/Form/OptionGroup.tpl,{$form.description.html}
templates/CRM/Admin/Form/OptionGroup.tpl,{$form.name.label}
templates/CRM/Admin/Form/OptionGroup.tpl,{$form.name.html}
templates/CRM/Admin/Form/OptionGroup.tpl,{$form.data_type.label}
templates/CRM/Admin/Form/OptionGroup.tpl,{$form.data_type.html}
templates/CRM/Admin/Form/OptionGroup.tpl,{$form.is_active.label}
templates/CRM/Admin/Form/OptionGroup.tpl,{$form.is_active.html}
templates/CRM/Admin/Form/OptionGroup.tpl,{$form.is_reserved.label}
templates/CRM/Admin/Form/OptionGroup.tpl,{$form.is_reserved.html}
templates/CRM/Admin/Form/Options.tpl,{$form.label.html}
templates/CRM/Admin/Form/Options.tpl,{$form.label.html}
templates/CRM/Admin/Form/Options.tpl,{$form.label.html}
templates/CRM/Admin/Form/Options.tpl,{$form.label.label}
templates/CRM/Admin/Form/Options.tpl,{$form.label.html}
templates/CRM/Admin/Form/Options.tpl,{$form.financial_account_id.label}
templates/CRM/Admin/Form/Options.tpl,{$form.financial_account_id.html}
templates/CRM/Admin/Form/Options.tpl,{$form.value.label}
templates/CRM/Admin/Form/Options.tpl,{$form.value.html}
templates/CRM/Admin/Form/Options.tpl,{$form.description.html}
templates/CRM/Admin/Form/Options.tpl,{$form.value.html}
templates/CRM/Admin/Form/Options.tpl,{$form.name.label}
templates/CRM/Admin/Form/Options.tpl,{$form.name.html}
templates/CRM/Admin/Form/Options.tpl,{$form.filter.label}
templates/CRM/Admin/Form/Options.tpl,{$form.filter.html}
templates/CRM/Admin/Form/Options.tpl,{$form.description.label}
templates/CRM/Admin/Form/Options.tpl,{$form.description.html}
templates/CRM/Admin/Form/Options.tpl,{$form.visibility_id.label}
templates/CRM/Admin/Form/Options.tpl,{$form.visibility_id.html}
templates/CRM/Admin/Form/Options.tpl,{$form.grouping.label}
templates/CRM/Admin/Form/Options.tpl,{$form.grouping.html}
templates/CRM/Admin/Form/Options.tpl,{$form.weight.label}
templates/CRM/Admin/Form/Options.tpl,{$form.weight.html}
templates/CRM/Admin/Form/Options.tpl,{$form.icon.label}
templates/CRM/Admin/Form/Options.tpl,{$form.icon.html}
templates/CRM/Admin/Form/Options.tpl,{$form.color.label}
templates/CRM/Admin/Form/Options.tpl,{$form.color.html}
templates/CRM/Admin/Form/Options.tpl,{$form.component_id.label}
templates/CRM/Admin/Form/Options.tpl,{$form.component_id.html}
templates/CRM/Admin/Form/Options.tpl,{$form.is_active.label}
templates/CRM/Admin/Form/Options.tpl,{$form.is_active.html}
templates/CRM/Admin/Form/Options.tpl,{$form.is_default.label}
templates/CRM/Admin/Form/Options.tpl,{$form.is_default.html}
templates/CRM/Admin/Form/Options.tpl,{$form.contactOptions.label}
templates/CRM/Admin/Form/Options.tpl,{$form.contactOptions.html}
templates/CRM/Admin/Form/ParticipantStatusType.tpl,{$form.name.label}
templates/CRM/Admin/Form/ParticipantStatusType.tpl,{$form.name.html}
templates/CRM/Admin/Form/ParticipantStatusType.tpl,{$form.label.label}
templates/CRM/Admin/Form/ParticipantStatusType.tpl,{$form.label.html}
templates/CRM/Admin/Form/ParticipantStatusType.tpl,{$form.class.label}
templates/CRM/Admin/Form/ParticipantStatusType.tpl,{$form.class.html}
templates/CRM/Admin/Form/ParticipantStatusType.tpl,{$form.is_reserved.label}
templates/CRM/Admin/Form/ParticipantStatusType.tpl,{$form.is_reserved.html}
templates/CRM/Admin/Form/ParticipantStatusType.tpl,{$form.is_active.label}
templates/CRM/Admin/Form/ParticipantStatusType.tpl,{$form.is_active.html}
templates/CRM/Admin/Form/ParticipantStatusType.tpl,{$form.is_counted.label}
templates/CRM/Admin/Form/ParticipantStatusType.tpl,{$form.is_counted.html}
templates/CRM/Admin/Form/ParticipantStatusType.tpl,{$form.weight.label}
templates/CRM/Admin/Form/ParticipantStatusType.tpl,{$form.weight.html}
templates/CRM/Admin/Form/ParticipantStatusType.tpl,{$form.visibility_id.label}
templates/CRM/Admin/Form/ParticipantStatusType.tpl,{$form.visibility_id.html}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.payment_processor_type_id.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.payment_processor_type_id.html}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.name.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.name.html}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.description.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.description.html}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.financial_account_id.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.financial_account_id.html}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.payment_instrument_id.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.payment_instrument_id.html}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.is_active.html}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.is_active.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.is_default.html}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.is_default.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.accept_credit_cards.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.accept_credit_cards.html}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.user_name.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.user_name.html}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.password.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.password.html}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.signature.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.signature.html}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.subject.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.subject.html}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.url_site.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.url_site.html|crmAddClass:huge}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.url_api.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.url_api.html|crmAddClass:huge}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.url_recur.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.url_recur.html|crmAddClass:huge}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.url_button.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.url_button.html|crmAddClass:huge}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.test_user_name.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.test_user_name.html}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.test_password.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.test_password.html}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.test_signature.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.test_signature.html}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.test_subject.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.test_subject.html}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.test_url_site.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.test_url_site.html|crmAddClass:huge}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.test_url_api.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.test_url_api.html|crmAddClass:huge}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.test_url_recur.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.test_url_recur.html|crmAddClass:huge}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.test_url_button.label}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$form.test_url_button.html|crmAddClass:huge}
templates/CRM/Admin/Form/PaymentProcessor.tpl,{$refreshURL}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.title.label}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.title.html}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.name.label}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.name.html}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.description.label}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.description.html}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.billing_mode.label}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.billing_mode.html}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.class_name.label}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.class_name.html}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.is_active.html}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.is_active.label}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.is_default.html}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.is_default.label}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.is_recur.html}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.is_recur.label}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.user_name_label.label}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.user_name_label.html}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.password_label.label}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.password_label.html}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.signature_label.label}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.signature_label.html}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.subject_label.label}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.subject_label.html}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.url_site_default.label}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.url_site_default.html}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.url_api_default.label}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.url_api_default.html}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.url_recur_default.label}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.url_recur_default.html}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.url_button_default.label}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.url_button_default.html}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.url_site_test_default.label}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.url_site_test_default.html}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.url_api_test_default.label}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.url_api_test_default.html}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.url_recur_test_default.label}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.url_recur_test_default.html}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.url_button_test_default.label}
templates/CRM/Admin/Form/PaymentProcessorType.tpl,{$form.url_button_test_default.html}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.name.label}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.name.html}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.description.label}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.description.html}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.is_default.html}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.is_default.label}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.paper_size.label}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.paper_size.html}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.orientation.label}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.orientation.html}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.paper_dimensions.html}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.metric.label}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.metric.html}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.margin_top.label}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.margin_top.html}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.margin_bottom.label}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.margin_bottom.html}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.margin_left.label}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.margin_left.html}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.margin_right.label}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.margin_right.html}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.weight.label}
templates/CRM/Admin/Form/PdfFormats.tpl,{$form.weight.html}
templates/CRM/Admin/Form/Persistent.tpl,{$form.context.label}
templates/CRM/Admin/Form/Persistent.tpl,{$form.context.html|crmAddClass:huge}
templates/CRM/Admin/Form/Persistent.tpl,{$form.name.label}
templates/CRM/Admin/Form/Persistent.tpl,{$form.name.html|crmAddClass:huge}
templates/CRM/Admin/Form/Persistent.tpl,{$form.data.label}
templates/CRM/Admin/Form/Persistent.tpl,{$form.data.html}
templates/CRM/Admin/Form/Preferences/Address.tpl,{$form.mailing_format.label}
templates/CRM/Admin/Form/Preferences/Address.tpl,{$form.mailing_format.html|crmAddClass:huge12}
templates/CRM/Admin/Form/Preferences/Address.tpl,{$form.hideCountryMailingLabels.label}
templates/CRM/Admin/Form/Preferences/Address.tpl,{$form.hideCountryMailingLabels.html}
templates/CRM/Admin/Form/Preferences/Address.tpl,{$form.address_format.label}
templates/CRM/Admin/Form/Preferences/Address.tpl,{$form.address_format.html|crmAddClass:huge12}
templates/CRM/Admin/Form/Preferences/Address.tpl,{$form.address_options.label}
templates/CRM/Admin/Form/Preferences/Address.tpl,{$form.address_options.html}
templates/CRM/Admin/Form/Preferences/Address.tpl,{$form.address_standardization_provider.label}
templates/CRM/Admin/Form/Preferences/Address.tpl,{$form.address_standardization_provider.html}
templates/CRM/Admin/Form/Preferences/Address.tpl,{$form.address_standardization_userid.label}
templates/CRM/Admin/Form/Preferences/Address.tpl,{$form.address_standardization_userid.html}
templates/CRM/Admin/Form/Preferences/Address.tpl,{$form.address_standardization_url.label}
templates/CRM/Admin/Form/Preferences/Address.tpl,{$form.address_standardization_url.html}
templates/CRM/Admin/Form/Preferences/Contribute.tpl,{$formName}
templates/CRM/Admin/Form/Preferences/Contribute.tpl,{$htmlField}
templates/CRM/Admin/Form/Preferences/Contribute.tpl,{$form.$htmlField.html}
templates/CRM/Admin/Form/Preferences/Contribute.tpl,{$form.$htmlField.label}
templates/CRM/Admin/Form/Preferences/Contribute.tpl,{$fieldSpec.description}
templates/CRM/Admin/Form/Preferences/Contribute.tpl,{$form.$htmlField.label}
templates/CRM/Admin/Form/Preferences/Contribute.tpl,{$form.$htmlField.html}
templates/CRM/Admin/Form/Preferences/Contribute.tpl,{$fieldSpec.description}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.contact_view_options.label}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.contact_view_options.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.contact_smart_group_display.label}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.contact_smart_group_display.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$settings_fields.contact_smart_group_display.description}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.contact_edit_options.label}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$opId}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.contact_edit_options.$opId.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$opId}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.contact_edit_options.$opId.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$opId}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.contact_edit_options.$opId.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.advanced_search_options.label}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.advanced_search_options.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.contact_ajax_check_similar.label}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.contact_ajax_check_similar.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.activity_assignee_notification.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.do_not_notify_assignees_for.label}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.do_not_notify_assignees_for.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.activity_assignee_notification_ics.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.preserve_activity_tab_filter.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$settings_fields.preserve_activity_tab_filter.description}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.user_dashboard_options.label}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.user_dashboard_options.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$settings_fields.user_dashboard_options.description}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.editor_id.label}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.editor_id.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.ckeditor_config.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.ajaxPopupsEnabled.label}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.ajaxPopupsEnabled.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.display_name_format.label}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.display_name_format.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$settings_fields.display_name_format.description}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.sort_name_format.label}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.sort_name_format.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$settings_fields.sort_name_format.description}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.menubar_position.label}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.menubar_position.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.menubar_color.label}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.menubar_color.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.theme_backend.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.theme_backend.label}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.theme_backend.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.theme_frontend.label}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$form.theme_frontend.html}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$invoicesKey}
templates/CRM/Admin/Form/Preferences/Display.tpl,{$invoicing}
templates/CRM/Admin/Form/PreferencesDate.tpl,{$form.name.label}
templates/CRM/Admin/Form/PreferencesDate.tpl,{$form.name.html}
templates/CRM/Admin/Form/PreferencesDate.tpl,{$form.description.label}
templates/CRM/Admin/Form/PreferencesDate.tpl,{$form.description.html}
templates/CRM/Admin/Form/PreferencesDate.tpl,{$form.date_format.label}
templates/CRM/Admin/Form/PreferencesDate.tpl,{$form.date_format.html}
templates/CRM/Admin/Form/PreferencesDate.tpl,{$form.time_format.label}
templates/CRM/Admin/Form/PreferencesDate.tpl,{$form.time_format.html}
templates/CRM/Admin/Form/PreferencesDate.tpl,{$form.start.label}
templates/CRM/Admin/Form/PreferencesDate.tpl,{$form.start.html}
templates/CRM/Admin/Form/PreferencesDate.tpl,{$form.end.label}
templates/CRM/Admin/Form/PreferencesDate.tpl,{$form.end.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.title.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.title.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.entity.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.entity.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.start_action_offset.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.absolute_date.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.start_action_offset.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.start_action_unit.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.start_action_condition.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.start_action_date.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.record_activity.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.record_activity.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.is_repeat.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.is_repeat.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.repetition_frequency_interval.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.repetition_frequency_interval.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.repetition_frequency_unit.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.end_frequency_interval.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.end_frequency_interval.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.end_frequency_unit.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.end_action.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.end_date.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.from_name.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.from_name.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.from_email.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.from_email.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.recipient.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.limit_to.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.recipient.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.recipient_listing.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.recipient_listing.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.recipient_manual_id.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.recipient_manual_id.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.group_id.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.group_id.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.mode.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.mode.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.filter_contact_language.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.filter_contact_language.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.communication_language.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.communication_language.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.is_active.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.is_active.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.template.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.template.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.subject.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.subject.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.sms_provider_id.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.sms_provider_id.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.SMStemplate.label}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.SMStemplate.html}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$form.formClass}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$recipientMapping}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$recipientLabels.other}
templates/CRM/Admin/Form/ScheduleReminders.tpl,{$recipientLabels.activity}
templates/CRM/Admin/Form/Setting/Case.tpl,{$form.civicaseRedactActivityEmail.label}
templates/CRM/Admin/Form/Setting/Case.tpl,{$form.civicaseRedactActivityEmail.html}
templates/CRM/Admin/Form/Setting/Case.tpl,{$form.civicaseAllowMultipleClients.label}
templates/CRM/Admin/Form/Setting/Case.tpl,{$form.civicaseAllowMultipleClients.html}
templates/CRM/Admin/Form/Setting/Case.tpl,{$form.civicaseNaturalActivityTypeSort.label}
templates/CRM/Admin/Form/Setting/Case.tpl,{$form.civicaseNaturalActivityTypeSort.html}
templates/CRM/Admin/Form/Setting/Case.tpl,{$form.civicaseActivityRevisions.label}
templates/CRM/Admin/Form/Setting/Case.tpl,{$form.civicaseActivityRevisions.html}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.dateformatDatetime.label}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.dateformatDatetime.html}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.dateformatFull.label}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.dateformatFull.html}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.dateformatPartial.label}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.dateformatPartial.html}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.dateformatYear.label}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.dateformatYear.html}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.dateformatTime.label}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.dateformatTime.html}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.dateformatFinancialBatch.label}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.dateformatFinancialBatch.html}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.dateformatshortdate.label}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.dateformatshortdate.html}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.dateInputFormat.label}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.dateInputFormat.html}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.timeInputFormat.label}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.timeInputFormat.html}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.weekBegins.label}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.weekBegins.html}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.fiscalYearStart.label}
templates/CRM/Admin/Form/Setting/Date.tpl,{$form.fiscalYearStart.html}
templates/CRM/Admin/Form/Setting/Debugging.tpl,{$form.userFrameworkLogging.label}
templates/CRM/Admin/Form/Setting/Debugging.tpl,{$form.userFrameworkLogging.html}
templates/CRM/Admin/Form/Setting/Debugging.tpl,{$form.debug_enabled.label}
templates/CRM/Admin/Form/Setting/Debugging.tpl,{$form.debug_enabled.html}
templates/CRM/Admin/Form/Setting/Debugging.tpl,{$form.backtrace.label}
templates/CRM/Admin/Form/Setting/Debugging.tpl,{$form.backtrace.html}
templates/CRM/Admin/Form/Setting/Debugging.tpl,{$form.environment.label}
templates/CRM/Admin/Form/Setting/Debugging.tpl,{$form.environment.html}
templates/CRM/Admin/Form/Setting/Debugging.tpl,{$form.fatalErrorHandler.label}
templates/CRM/Admin/Form/Setting/Debugging.tpl,{$form.fatalErrorHandler.html}
templates/CRM/Admin/Form/Setting/Debugging.tpl,{$form.assetCache.label}
templates/CRM/Admin/Form/Setting/Debugging.tpl,{$form.assetCache.html}
templates/CRM/Admin/Form/Setting/Event.tpl,{$form.enable_cart.label}
templates/CRM/Admin/Form/Setting/Event.tpl,{$form.enable_cart.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.lcMessages.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.lcMessages.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.languageLimit.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.languageLimit.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.addLanguage.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.addLanguage.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.inheritLocale.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.inheritLocale.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.uiLanguages.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.uiLanguages.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.contact_default_language.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.contact_default_language.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.defaultCurrency.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.defaultCurrency.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.monetaryThousandSeparator.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.monetaryThousandSeparator.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.monetaryDecimalPoint.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.monetaryDecimalPoint.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.currencyLimit.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.currencyLimit.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.moneyformat.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.moneyformat.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.moneyvalueformat.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.moneyvalueformat.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.customTranslateFunction.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.customTranslateFunction.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.legacyEncoding.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.legacyEncoding.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.fieldSeparator.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.fieldSeparator.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.defaultContactCountry.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.defaultContactCountry.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.defaultContactStateProvince.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.defaultContactStateProvince.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.countryLimit.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.countryLimit.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.provinceLimit.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.provinceLimit.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.makeSinglelingual.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.makeSinglelingual.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$warning}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.makeMultilingual.label}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$form.makeMultilingual.html}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$warning}
templates/CRM/Admin/Form/Setting/Localization.tpl,{$warning}
templates/CRM/Admin/Form/Setting/Mapping.tpl,{$form.mapProvider.label}
templates/CRM/Admin/Form/Setting/Mapping.tpl,{$form.mapProvider.html}
templates/CRM/Admin/Form/Setting/Mapping.tpl,{$form.mapAPIKey.label}
templates/CRM/Admin/Form/Setting/Mapping.tpl,{$form.mapAPIKey.html|crmAddClass:huge}
templates/CRM/Admin/Form/Setting/Mapping.tpl,{$form.geoProvider.label}
templates/CRM/Admin/Form/Setting/Mapping.tpl,{$form.geoProvider.html}
templates/CRM/Admin/Form/Setting/Mapping.tpl,{$form.geoAPIKey.label}
templates/CRM/Admin/Form/Setting/Mapping.tpl,{$form.geoAPIKey.html|crmAddClass:huge}
templates/CRM/Admin/Form/Setting/Mapping.tpl,{$form.formClass}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.checksum_timeout.label}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.checksum_timeout.html}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.contact_undelete.label}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.contact_undelete.html}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$contact_undelete_description}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.logging.label}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.logging.html}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.doNotAttachPDFReceipt.label}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.doNotAttachPDFReceipt.html}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.recordGeneratedLetters.label}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.recordGeneratedLetters.html}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.wkhtmltopdfPath.label}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.wkhtmltopdfPath.html}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$setting_name}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.$setting_name.label}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.$setting_name.html}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$setting_descriptions.$setting_name}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.remote_profile_submissions.label}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.remote_profile_submissions.html}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.allow_alert_autodismissal.label}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.allow_alert_autodismissal.html}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.recaptchaPublicKey.label}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.recaptchaPublicKey.html}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.recaptchaPrivateKey.label}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.recaptchaPrivateKey.html}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.recaptchaOptions.label}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.recaptchaOptions.html}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.forceRecaptcha.label}
templates/CRM/Admin/Form/Setting/Miscellaneous.tpl,{$form.forceRecaptcha.html}
templates/CRM/Admin/Form/Setting/Path.tpl,{$form.uploadDir.label}
templates/CRM/Admin/Form/Setting/Path.tpl,{$form.uploadDir.html|crmAddClass:'huge40'}
templates/CRM/Admin/Form/Setting/Path.tpl,{$form.imageUploadDir.label}
templates/CRM/Admin/Form/Setting/Path.tpl,{$form.imageUploadDir.html|crmAddClass:'huge40'}
templates/CRM/Admin/Form/Setting/Path.tpl,{$form.customFileUploadDir.label}
templates/CRM/Admin/Form/Setting/Path.tpl,{$form.customFileUploadDir.html|crmAddClass:'huge40'}
templates/CRM/Admin/Form/Setting/Path.tpl,{$form.customTemplateDir.label}
templates/CRM/Admin/Form/Setting/Path.tpl,{$form.customTemplateDir.html|crmAddClass:'huge40'}
templates/CRM/Admin/Form/Setting/Path.tpl,{$form.customPHPPathDir.label}
templates/CRM/Admin/Form/Setting/Path.tpl,{$form.customPHPPathDir.html|crmAddClass:'huge40'}
templates/CRM/Admin/Form/Setting/Path.tpl,{$form.extensionsDir.label}
templates/CRM/Admin/Form/Setting/Path.tpl,{$form.extensionsDir.html|crmAddClass:'huge40'}
templates/CRM/Admin/Form/Setting/SettingForm.tpl,{$setting_name}
templates/CRM/Admin/Form/Setting/SettingForm.tpl,{$form.$setting_name.label}
templates/CRM/Admin/Form/Setting/SettingForm.tpl,{$setting_detail.wrapper_element.0}
templates/CRM/Admin/Form/Setting/SettingForm.tpl,{$form.$setting_name.html}
templates/CRM/Admin/Form/Setting/SettingForm.tpl,{$setting_detail.wrapper_element.1}
templates/CRM/Admin/Form/Setting/SettingForm.tpl,{$form.$setting_name.html}
templates/CRM/Admin/Form/Setting/SettingForm.tpl,{$setting_detail.description}
templates/CRM/Admin/Form/Setting/Smtp.tpl,{$form.allow_mail_from_logged_in_contact.html}
templates/CRM/Admin/Form/Setting/Smtp.tpl,{$form.allow_mail_from_logged_in_contact.label}
templates/CRM/Admin/Form/Setting/Smtp.tpl,{$form.outBound_option.label}
templates/CRM/Admin/Form/Setting/Smtp.tpl,{$form.outBound_option.html}
templates/CRM/Admin/Form/Setting/Smtp.tpl,{$form.smtpServer.label}
templates/CRM/Admin/Form/Setting/Smtp.tpl,{$form.smtpServer.html}
templates/CRM/Admin/Form/Setting/Smtp.tpl,{$form.smtpPort.label}
templates/CRM/Admin/Form/Setting/Smtp.tpl,{$form.smtpPort.html}
templates/CRM/Admin/Form/Setting/Smtp.tpl,{$form.smtpAuth.label}
templates/CRM/Admin/Form/Setting/Smtp.tpl,{$form.smtpAuth.html}
templates/CRM/Admin/Form/Setting/Smtp.tpl,{$form.smtpUsername.label}
templates/CRM/Admin/Form/Setting/Smtp.tpl,{$form.smtpUsername.html}
templates/CRM/Admin/Form/Setting/Smtp.tpl,{$form.smtpPassword.label}
templates/CRM/Admin/Form/Setting/Smtp.tpl,{$form.smtpPassword.html}
templates/CRM/Admin/Form/Setting/Smtp.tpl,{$form.sendmail_path.label}
templates/CRM/Admin/Form/Setting/Smtp.tpl,{$form.sendmail_path.html}
templates/CRM/Admin/Form/Setting/Smtp.tpl,{$form.sendmail_args.label}
templates/CRM/Admin/Form/Setting/Smtp.tpl,{$form.sendmail_args.html}
templates/CRM/Admin/Form/Setting/UF.tpl,{$form.userFrameworkUsersTableName.label}
templates/CRM/Admin/Form/Setting/UF.tpl,{$form.userFrameworkUsersTableName.html}
templates/CRM/Admin/Form/Setting/UF.tpl,{$form.wpBasePage.label}
templates/CRM/Admin/Form/Setting/UF.tpl,{$config->userFrameworkBaseURL}
templates/CRM/Admin/Form/Setting/UF.tpl,{$form.wpBasePage.html}
templates/CRM/Admin/Form/Setting/UF.tpl,{$form.syncCMSEmail.label}
templates/CRM/Admin/Form/Setting/UF.tpl,{$form.syncCMSEmail.html}
templates/CRM/Admin/Form/Setting/UF.tpl,{$tablePrefixes}
templates/CRM/Admin/Form/Setting/Url.tpl,{$form.userFrameworkResourceURL.label}
templates/CRM/Admin/Form/Setting/Url.tpl,{$form.userFrameworkResourceURL.html|crmAddClass:'huge40'}
templates/CRM/Admin/Form/Setting/Url.tpl,{$form.imageUploadURL.label}
templates/CRM/Admin/Form/Setting/Url.tpl,{$form.imageUploadURL.html|crmAddClass:'huge40'}
templates/CRM/Admin/Form/Setting/Url.tpl,{$form.customCSSURL.label}
templates/CRM/Admin/Form/Setting/Url.tpl,{$form.customCSSURL.html|crmAddClass:'huge40'}
templates/CRM/Admin/Form/Setting/Url.tpl,{$form.disable_core_css.label}
templates/CRM/Admin/Form/Setting/Url.tpl,{$form.disable_core_css.html}
templates/CRM/Admin/Form/Setting/Url.tpl,{$disable_core_css_description}
templates/CRM/Admin/Form/Setting/Url.tpl,{$form.extensionsURL.label}
templates/CRM/Admin/Form/Setting/Url.tpl,{$form.extensionsURL.html|crmAddClass:'huge40'}
templates/CRM/Admin/Form/Setting/Url.tpl,{$form.enableSSL.label}
templates/CRM/Admin/Form/Setting/Url.tpl,{$form.enableSSL.html}
templates/CRM/Admin/Form/Setting/Url.tpl,{$form.verifySSL.label}
templates/CRM/Admin/Form/Setting/Url.tpl,{$form.verifySSL.html}
templates/CRM/Admin/Form/Setting/Url.tpl,{$verifySSL_description}
templates/CRM/Admin/Form/WordReplacements.tpl,{$soInstance}
templates/CRM/Admin/Form/WordReplacements.tpl,{$form.enabled.$soInstance.html}
templates/CRM/Admin/Form/WordReplacements.tpl,{$form.old.$soInstance.html}
templates/CRM/Admin/Form/WordReplacements.tpl,{$form.new.$soInstance.html}
templates/CRM/Admin/Form/WordReplacements.tpl,{$form.cb.$soInstance.html}
templates/CRM/Admin/Form/WordReplacements.tpl,{$instance}
templates/CRM/Admin/Page/Access.tpl,{$ufAccessURL}
templates/CRM/Admin/Page/Access.tpl,{$jAccessParams}
templates/CRM/Admin/Page/Admin.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/Admin.tpl,{$groupName}
templates/CRM/Admin/Page/Admin.tpl,{$group.show}
templates/CRM/Admin/Page/Admin.tpl,{$group.title}
templates/CRM/Admin/Page/Admin.tpl,{$panelItem.url}
templates/CRM/Admin/Page/Admin.tpl,{$panelItem.extra}
templates/CRM/Admin/Page/Admin.tpl,{$panelItem.id}
templates/CRM/Admin/Page/Admin.tpl,{$panelItem.title}
templates/CRM/Admin/Page/Admin.tpl,{$groupName}
templates/CRM/Admin/Page/Admin.tpl,{$group.hide}
templates/CRM/Admin/Page/Admin.tpl,{$group.title}
templates/CRM/Admin/Page/Admin.tpl,{$panelItem.url}
templates/CRM/Admin/Page/Admin.tpl,{$panelItem.extra}
templates/CRM/Admin/Page/Admin.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/Admin.tpl,{$panelItem.icon}
templates/CRM/Admin/Page/Admin.tpl,{$panelItem.title|escape}
templates/CRM/Admin/Page/Admin.tpl,{$panelItem.url}
templates/CRM/Admin/Page/Admin.tpl,{$panelItem.extra}
templates/CRM/Admin/Page/Admin.tpl,{$panelItem.id}
templates/CRM/Admin/Page/Admin.tpl,{$panelItem.title}
templates/CRM/Admin/Page/Admin.tpl,{$panelItem.desc}
templates/CRM/Admin/Page/APIExplorer.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/APIExplorer.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/APIExplorer.tpl,{$entity}
templates/CRM/Admin/Page/APIExplorer.tpl,{$entity}
templates/CRM/Admin/Page/APIExplorer.tpl,{$entity}
templates/CRM/Admin/Page/APIExplorer.tpl,{$entity}
templates/CRM/Admin/Page/APIExplorer.tpl,{$entity}
templates/CRM/Admin/Page/APIExplorer.tpl,{$entity}
templates/CRM/Admin/Page/APIExplorer.tpl,{$op|htmlspecialchars}
templates/CRM/Admin/Page/APIExplorer.tpl,{$op|htmlspecialchars}
templates/CRM/Admin/Page/APIExplorer.tpl,{$entity}
templates/CRM/Admin/Page/APIExplorer.tpl,{$entity}
templates/CRM/Admin/Page/CKEditorConfig.tpl,{$configUrl}
templates/CRM/Admin/Page/CKEditorConfig.tpl,{$p}
templates/CRM/Admin/Page/CKEditorConfig.tpl,{$s}
templates/CRM/Admin/Page/CKEditorConfig.tpl,{$s|ucfirst}
templates/CRM/Admin/Page/CKEditorConfig.tpl,{$extraPlugins}
templates/CRM/Admin/Page/CKEditorConfig.tpl,{$revertConfirm}
templates/CRM/Admin/Page/CKEditorConfig.tpl,{$preset}
templates/CRM/Admin/Page/ConfigTaskList.tpl,{$linkTitle|escape}
templates/CRM/Admin/Page/ConfigTaskList.tpl,{$linkTitle|escape}
templates/CRM/Admin/Page/ConfigTaskList.tpl,{$linkTitle|escape}
templates/CRM/Admin/Page/ConfigTaskList.tpl,{$registerSite}
templates/CRM/Admin/Page/ConfigTaskList.tpl,{$linkTitle|escape}
templates/CRM/Admin/Page/ConfigTaskList.tpl,{$linkTitle|escape}
templates/CRM/Admin/Page/ConfigTaskList.tpl,{$linkTitle|escape}
templates/CRM/Admin/Page/ConfigTaskList.tpl,{$linkTitle|escape}
templates/CRM/Admin/Page/ConfigTaskList.tpl,{$linkTitle|escape}
templates/CRM/Admin/Page/ConfigTaskList.tpl,{$linkTitle|escape}
templates/CRM/Admin/Page/ConfigTaskList.tpl,{$linkTitle|escape}
templates/CRM/Admin/Page/ConfigTaskList.tpl,{$linkTitle|escape}
templates/CRM/Admin/Page/ConfigTaskList.tpl,{$linkTitle|escape}
templates/CRM/Admin/Page/ConfigTaskList.tpl,{$config->userFrameworkBaseURL}
templates/CRM/Admin/Page/ConfigTaskList.tpl,{$config->userFrameworkBaseURL}
templates/CRM/Admin/Page/ConfigTaskList.tpl,{$linkTitle|escape}
templates/CRM/Admin/Page/ConfigTaskList.tpl,{$linkTitle|escape}
templates/CRM/Admin/Page/ConfigTaskList.tpl,{$linkTitle|escape}
templates/CRM/Admin/Page/ConfigTaskList.tpl,{$linkTitle|escape}
templates/CRM/Admin/Page/ConfigTaskList.tpl,{$linkTitle|escape}
templates/CRM/Admin/Page/ContactType.tpl,{$row.id}
templates/CRM/Admin/Page/ContactType.tpl,{$row.class}
templates/CRM/Admin/Page/ContactType.tpl,{$row.label}
templates/CRM/Admin/Page/ContactType.tpl,{$row.parent_label}
templates/CRM/Admin/Page/ContactType.tpl,{$row.description}
templates/CRM/Admin/Page/ContactType.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Admin/Page/ContactType.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/EventTemplate.tpl,{$row.id}
templates/CRM/Admin/Page/EventTemplate.tpl,{$row.id}
templates/CRM/Admin/Page/EventTemplate.tpl,{$row.template_title}
templates/CRM/Admin/Page/EventTemplate.tpl,{$row.event_type}
templates/CRM/Admin/Page/EventTemplate.tpl,{$row.participant_role}
templates/CRM/Admin/Page/EventTemplate.tpl,{$row.participant_listing}
templates/CRM/Admin/Page/EventTemplate.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$extension.name}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$extension.key}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$extension.description}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$extension.downloadUrl}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$extension.path}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$label}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$url}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$url}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$extension.maintainer.author}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$extension.maintainer.email}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$extension.maintainer.email}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$extension.version}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$extension.releaseDate}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$extension.license}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$extension.develStage}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$localExtensionRows.$ext.name}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$ext}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$remoteExtensionRows.$ext.name}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$ext}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$ext}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$ver}
templates/CRM/Admin/Page/ExtensionDetails.tpl,{$extension.comments}
templates/CRM/Admin/Page/Extensions/AddNew.tpl,{$row.file}
templates/CRM/Admin/Page/Extensions/AddNew.tpl,{$row.file}
templates/CRM/Admin/Page/Extensions/AddNew.tpl,{$row.label}
templates/CRM/Admin/Page/Extensions/AddNew.tpl,{$row.key}
templates/CRM/Admin/Page/Extensions/AddNew.tpl,{$row.version}
templates/CRM/Admin/Page/Extensions/AddNew.tpl,{$row.upgradeVersion}
templates/CRM/Admin/Page/Extensions/AddNew.tpl,{$row.type|capitalize}
templates/CRM/Admin/Page/Extensions/AddNew.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Admin/Page/Extensions/AddNew.tpl,{$row.file}
templates/CRM/Admin/Page/Extensions/AddNewReq.tpl,{$req.title}
templates/CRM/Admin/Page/Extensions/AddNewReq.tpl,{$req.message}
templates/CRM/Admin/Page/Extensions/Main.tpl,{$row.file}
templates/CRM/Admin/Page/Extensions/Main.tpl,{$row.file}
templates/CRM/Admin/Page/Extensions/Main.tpl,{$row.label}
templates/CRM/Admin/Page/Extensions/Main.tpl,{$row.key}
templates/CRM/Admin/Page/Extensions/Main.tpl,{$remoteExtensionRows[$extKey].version}
templates/CRM/Admin/Page/Extensions/Main.tpl,{$row.statusLabel}
templates/CRM/Admin/Page/Extensions/Main.tpl,{$row.version}
templates/CRM/Admin/Page/Extensions/Main.tpl,{$row.upgradeVersion}
templates/CRM/Admin/Page/Extensions/Main.tpl,{$row.type|capitalize}
templates/CRM/Admin/Page/Extensions/Main.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Admin/Page/Extensions/Main.tpl,{$row.file}
templates/CRM/Admin/Page/Job.tpl,{$row.id}
templates/CRM/Admin/Page/Job.tpl,{$row.class}
templates/CRM/Admin/Page/Job.tpl,{$row.name}
templates/CRM/Admin/Page/Job.tpl,{$row.run_frequency}
templates/CRM/Admin/Page/Job.tpl,{$row.description}
templates/CRM/Admin/Page/Job.tpl,{$row.api_entity}
templates/CRM/Admin/Page/Job.tpl,{$row.api_action}
templates/CRM/Admin/Page/Job.tpl,{$row.parameters}
templates/CRM/Admin/Page/Job.tpl,{$row.last_run|crmDate:$config->dateformatDatetime}
templates/CRM/Admin/Page/Job.tpl,{$row.id}
templates/CRM/Admin/Page/Job.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Admin/Page/JobLog.tpl,{$docLink}
templates/CRM/Admin/Page/JobLog.tpl,{$jobName}
templates/CRM/Admin/Page/JobLog.tpl,{$row.id}
templates/CRM/Admin/Page/JobLog.tpl,{$row.class}
templates/CRM/Admin/Page/JobLog.tpl,{$row.run_time}
templates/CRM/Admin/Page/JobLog.tpl,{$row.name}
templates/CRM/Admin/Page/JobLog.tpl,{$row.command}
templates/CRM/Admin/Page/JobLog.tpl,{$row.description}
templates/CRM/Admin/Page/JobLog.tpl,{$row.data}
templates/CRM/Admin/Page/LabelFormats.tpl,{$row.id}
templates/CRM/Admin/Page/LabelFormats.tpl,{$row.class}
templates/CRM/Admin/Page/LabelFormats.tpl,{$row.label}
templates/CRM/Admin/Page/LabelFormats.tpl,{$row.groupName}
templates/CRM/Admin/Page/LabelFormats.tpl,{$row.weight}
templates/CRM/Admin/Page/LabelFormats.tpl,{$row.grouping}
templates/CRM/Admin/Page/LabelFormats.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/LabelFormats.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Admin/Page/LocationType.tpl,{$row.id}
templates/CRM/Admin/Page/LocationType.tpl,{$row.class}
templates/CRM/Admin/Page/LocationType.tpl,{$row.name}
templates/CRM/Admin/Page/LocationType.tpl,{$row.display_name}
templates/CRM/Admin/Page/LocationType.tpl,{$row.vcard_name}
templates/CRM/Admin/Page/LocationType.tpl,{$row.description}
templates/CRM/Admin/Page/LocationType.tpl,{$row.id}
templates/CRM/Admin/Page/LocationType.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/LocationType.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Admin/Page/LocationType.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/MailSettings.tpl,{$row.id}
templates/CRM/Admin/Page/MailSettings.tpl,{$row.name}
templates/CRM/Admin/Page/MailSettings.tpl,{$row.server}
templates/CRM/Admin/Page/MailSettings.tpl,{$row.username}
templates/CRM/Admin/Page/MailSettings.tpl,{$row.localpart}
templates/CRM/Admin/Page/MailSettings.tpl,{$row.domain}
templates/CRM/Admin/Page/MailSettings.tpl,{$row.return_path}
templates/CRM/Admin/Page/MailSettings.tpl,{$row.protocol}
templates/CRM/Admin/Page/MailSettings.tpl,{$row.source}
templates/CRM/Admin/Page/MailSettings.tpl,{$row.port}
templates/CRM/Admin/Page/MailSettings.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Admin/Page/MailSettings.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/Mapping.tpl,{$row.class}
templates/CRM/Admin/Page/Mapping.tpl,{$row.name}
templates/CRM/Admin/Page/Mapping.tpl,{$row.description}
templates/CRM/Admin/Page/Mapping.tpl,{$row.mapping_type}
templates/CRM/Admin/Page/Mapping.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Admin/Page/Mapping.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/MessageTemplates.tpl,{$form.msg_title.value}
templates/CRM/Admin/Page/MessageTemplates.tpl,{$form.msg_subject.label}
templates/CRM/Admin/Page/MessageTemplates.tpl,{$form.msg_subject.value}
templates/CRM/Admin/Page/MessageTemplates.tpl,{$form.msg_text.label}
templates/CRM/Admin/Page/MessageTemplates.tpl,{$form.msg_text.value|htmlentities}
templates/CRM/Admin/Page/MessageTemplates.tpl,{$form.msg_html.label}
templates/CRM/Admin/Page/MessageTemplates.tpl,{$form.msg_html.value|htmlentities}
templates/CRM/Admin/Page/MessageTemplates.tpl,{$form.pdf_format_id.label}
templates/CRM/Admin/Page/MessageTemplates.tpl,{$form.pdf_format_id.html}
templates/CRM/Admin/Page/MessageTemplates.tpl,{$form.buttons.html}
templates/CRM/Admin/Page/MessageTemplates.tpl,{$row.id}
templates/CRM/Admin/Page/MessageTemplates.tpl,{$row.class}
templates/CRM/Admin/Page/MessageTemplates.tpl,{$row.msg_title}
templates/CRM/Admin/Page/MessageTemplates.tpl,{$row.msg_subject}
templates/CRM/Admin/Page/MessageTemplates.tpl,{$row.id}
templates/CRM/Admin/Page/MessageTemplates.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Admin/Page/MessageTemplates.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/Navigation.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/Navigation.tpl,{$config->domainID()}
templates/CRM/Admin/Page/OptionGroup.tpl,{$row.id}
templates/CRM/Admin/Page/OptionGroup.tpl,{$row.class}
templates/CRM/Admin/Page/OptionGroup.tpl,{$row.title}
templates/CRM/Admin/Page/OptionGroup.tpl,{$row.name}
templates/CRM/Admin/Page/OptionGroup.tpl,{$row.id}
templates/CRM/Admin/Page/OptionGroup.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/Options.tpl,{$gName}
templates/CRM/Admin/Page/Options.tpl,{$row.id}
templates/CRM/Admin/Page/Options.tpl,{$row.id}
templates/CRM/Admin/Page/Options.tpl,{$row.icon}
templates/CRM/Admin/Page/Options.tpl,{$row.component_name}
templates/CRM/Admin/Page/Options.tpl,{$row.color}
templates/CRM/Admin/Page/Options.tpl,{$row.color|colorContrast}
templates/CRM/Admin/Page/Options.tpl,{$row.label}
templates/CRM/Admin/Page/Options.tpl,{$row.grouping}
templates/CRM/Admin/Page/Options.tpl,{$row.value}
templates/CRM/Admin/Page/Options.tpl,{$row.financial_account}
templates/CRM/Admin/Page/Options.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/Options.tpl,{$row.visibility_label}
templates/CRM/Admin/Page/Options.tpl,{$row.description}
templates/CRM/Admin/Page/Options.tpl,{$row.weight}
templates/CRM/Admin/Page/Options.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/Options.tpl,{$row.id}
templates/CRM/Admin/Page/Options.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Admin/Page/Options.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/ParticipantStatusType.tpl,{$row.id}
templates/CRM/Admin/Page/ParticipantStatusType.tpl,{$row.id}
templates/CRM/Admin/Page/ParticipantStatusType.tpl,{$row.class}
templates/CRM/Admin/Page/ParticipantStatusType.tpl,{$row.label}
templates/CRM/Admin/Page/ParticipantStatusType.tpl,{$row.name}
templates/CRM/Admin/Page/ParticipantStatusType.tpl,{$row.id}
templates/CRM/Admin/Page/ParticipantStatusType.tpl,{$row.class}
templates/CRM/Admin/Page/ParticipantStatusType.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/ParticipantStatusType.tpl,{$row.id}
templates/CRM/Admin/Page/ParticipantStatusType.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/ParticipantStatusType.tpl,{$row.weight}
templates/CRM/Admin/Page/ParticipantStatusType.tpl,{$row.visibility}
templates/CRM/Admin/Page/ParticipantStatusType.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Admin/Page/PaymentProcessor.tpl,{$row.id}
templates/CRM/Admin/Page/PaymentProcessor.tpl,{$row.class}
templates/CRM/Admin/Page/PaymentProcessor.tpl,{$row.id}
templates/CRM/Admin/Page/PaymentProcessor.tpl,{$row.test_id}
templates/CRM/Admin/Page/PaymentProcessor.tpl,{$row.name}
templates/CRM/Admin/Page/PaymentProcessor.tpl,{$row.payment_processor_type}
templates/CRM/Admin/Page/PaymentProcessor.tpl,{$row.description}
templates/CRM/Admin/Page/PaymentProcessor.tpl,{$row.financialAccount}
templates/CRM/Admin/Page/PaymentProcessor.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/PaymentProcessor.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Admin/Page/PaymentProcessorType.tpl,{$row.id}
templates/CRM/Admin/Page/PaymentProcessorType.tpl,{$row.class}
templates/CRM/Admin/Page/PaymentProcessorType.tpl,{$row.name}
templates/CRM/Admin/Page/PaymentProcessorType.tpl,{$row.title}
templates/CRM/Admin/Page/PaymentProcessorType.tpl,{$row.description}
templates/CRM/Admin/Page/PaymentProcessorType.tpl,{$row.id}
templates/CRM/Admin/Page/PaymentProcessorType.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/PaymentProcessorType.tpl,{$row.action}
templates/CRM/Admin/Page/PaymentProcessorType.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/PdfFormats.tpl,{$row.id}
templates/CRM/Admin/Page/PdfFormats.tpl,{$row.class}
templates/CRM/Admin/Page/PdfFormats.tpl,{$row.name}
templates/CRM/Admin/Page/PdfFormats.tpl,{$row.description}
templates/CRM/Admin/Page/PdfFormats.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/PdfFormats.tpl,{$row.weight}
templates/CRM/Admin/Page/PdfFormats.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Admin/Page/Persistent.tpl,{$values.context}
templates/CRM/Admin/Page/Persistent.tpl,{$values.name}
templates/CRM/Admin/Page/Persistent.tpl,{$values.data}
templates/CRM/Admin/Page/Persistent.tpl,{$values.action}
templates/CRM/Admin/Page/Persistent.tpl,{$values.context}
templates/CRM/Admin/Page/Persistent.tpl,{$values.name}
templates/CRM/Admin/Page/Persistent.tpl,{$values.data}
templates/CRM/Admin/Page/Persistent.tpl,{$values.action}
templates/CRM/Admin/Page/PreferencesDate.tpl,{$row.class}
templates/CRM/Admin/Page/PreferencesDate.tpl,{$row.name}
templates/CRM/Admin/Page/PreferencesDate.tpl,{$row.description}
templates/CRM/Admin/Page/PreferencesDate.tpl,{$row.date_format}
templates/CRM/Admin/Page/PreferencesDate.tpl,{$row.start}
templates/CRM/Admin/Page/PreferencesDate.tpl,{$row.end}
templates/CRM/Admin/Page/PreferencesDate.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Admin/Page/RelationshipType.tpl,{$docLink}
templates/CRM/Admin/Page/RelationshipType.tpl,{$row.id}
templates/CRM/Admin/Page/RelationshipType.tpl,{$row.class}
templates/CRM/Admin/Page/RelationshipType.tpl,{$row.label_a_b}
templates/CRM/Admin/Page/RelationshipType.tpl,{$row.label_b_a}
templates/CRM/Admin/Page/RelationshipType.tpl,{$row.contact_type_a_display}
templates/CRM/Admin/Page/RelationshipType.tpl,{$row.contact_sub_type_a}
templates/CRM/Admin/Page/RelationshipType.tpl,{$row.contact_type_b_display}
templates/CRM/Admin/Page/RelationshipType.tpl,{$row.contact_sub_type_b}
templates/CRM/Admin/Page/RelationshipType.tpl,{$row.id}
templates/CRM/Admin/Page/RelationshipType.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Admin/Page/RelationshipType.tpl,{$config->resourceBase}
templates/CRM/Admin/Page/Reminders.tpl,{$row.id}
templates/CRM/Admin/Page/Reminders.tpl,{$row.class}
templates/CRM/Admin/Page/Reminders.tpl,{$row.title}
templates/CRM/Admin/Page/Reminders.tpl,{$row.entity}
templates/CRM/Admin/Page/Reminders.tpl,{$row.value}
templates/CRM/Admin/Page/Reminders.tpl,{$row.absolute_date|crmDate}
templates/CRM/Admin/Page/Reminders.tpl,{$row.start_action_offset}
templates/CRM/Admin/Page/Reminders.tpl,{$row.start_action_unit}
templates/CRM/Admin/Page/Reminders.tpl,{$row.start_action_condition}
templates/CRM/Admin/Page/Reminders.tpl,{$row.entityDate}
templates/CRM/Admin/Page/Reminders.tpl,{$row.status}
templates/CRM/Admin/Page/Reminders.tpl,{$row.id}
templates/CRM/Admin/Page/Reminders.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Admin/Page/ScheduleReminders.tpl,{$schedRemindersDocLink}
templates/CRM/Badge/Form/Layout.tpl,{$form.title.label}
templates/CRM/Badge/Form/Layout.tpl,{$form.title.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.label_format_name.label}
templates/CRM/Badge/Form/Layout.tpl,{$form.label_format_name.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.description.label}
templates/CRM/Badge/Form/Layout.tpl,{$form.description.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.image_1.label}
templates/CRM/Badge/Form/Layout.tpl,{$form.image_1.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.width_image_1.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.width_image_1.label}
templates/CRM/Badge/Form/Layout.tpl,{$form.height_image_1.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.height_image_1.label}
templates/CRM/Badge/Form/Layout.tpl,{$form.image_2.label}
templates/CRM/Badge/Form/Layout.tpl,{$form.image_2.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.width_image_2.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.width_image_2.label}
templates/CRM/Badge/Form/Layout.tpl,{$form.height_image_2.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.height_image_2.label}
templates/CRM/Badge/Form/Layout.tpl,{$form.show_participant_image.label}
templates/CRM/Badge/Form/Layout.tpl,{$form.show_participant_image.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.width_participant_image.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.width_participant_image.label}
templates/CRM/Badge/Form/Layout.tpl,{$form.height_participant_image.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.height_participant_image.label}
templates/CRM/Badge/Form/Layout.tpl,{$form.alignment_participant_image.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.alignment_participant_image.label}
templates/CRM/Badge/Form/Layout.tpl,{$rowNumber}
templates/CRM/Badge/Form/Layout.tpl,{$form.token.$rowNumber.html|crmAddClass:twenty}
templates/CRM/Badge/Form/Layout.tpl,{$form.font_name.$rowNumber.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.font_size.$rowNumber.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.font_style.$rowNumber.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.text_alignment.$rowNumber.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.add_barcode.label}
templates/CRM/Badge/Form/Layout.tpl,{$form.add_barcode.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.barcode_type.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.barcode_alignment.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.is_active.label}
templates/CRM/Badge/Form/Layout.tpl,{$form.is_active.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.is_default.label}
templates/CRM/Badge/Form/Layout.tpl,{$form.is_default.html}
templates/CRM/Badge/Form/Layout.tpl,{$form.is_reserved.label}
templates/CRM/Badge/Form/Layout.tpl,{$form.is_reserved.html}
templates/CRM/Badge/Page/Layout.tpl,{$row.id}
templates/CRM/Badge/Page/Layout.tpl,{$row.class}
templates/CRM/Badge/Page/Layout.tpl,{$row.title}
templates/CRM/Badge/Page/Layout.tpl,{$row.description}
templates/CRM/Badge/Page/Layout.tpl,{$row.id}
templates/CRM/Badge/Page/Layout.tpl,{$config->resourceBase}
templates/CRM/Badge/Page/Layout.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Badge/Page/Layout.tpl,{$config->resourceBase}
templates/CRM/Batch/Form/Batch.tpl,{$form.title.label}
templates/CRM/Batch/Form/Batch.tpl,{$form.title.html}
templates/CRM/Batch/Form/Batch.tpl,{$form.type_id.label}
templates/CRM/Batch/Form/Batch.tpl,{$form.type_id.html}
templates/CRM/Batch/Form/Batch.tpl,{$form.description.label}
templates/CRM/Batch/Form/Batch.tpl,{$form.description.html}
templates/CRM/Batch/Form/Batch.tpl,{$form.item_count.label}
templates/CRM/Batch/Form/Batch.tpl,{$form.item_count.html}
templates/CRM/Batch/Form/Batch.tpl,{$form.total.label}
templates/CRM/Batch/Form/Batch.tpl,{$form.total.html|crmAddClass:eight}
templates/CRM/Batch/Form/Entry.tpl,{$form._qf_Entry_upload_force.html}
templates/CRM/Batch/Form/Entry.tpl,{$batchTotal|crmMoney}
templates/CRM/Batch/Form/Entry.tpl,{$defaultCurrencySymbol}
templates/CRM/Batch/Form/Entry.tpl,{$config->resourceBase}
templates/CRM/Batch/Form/Entry.tpl,{$field.name}
templates/CRM/Batch/Form/Entry.tpl,{$field.title}
templates/CRM/Batch/Form/Entry.tpl,{$rowNumber}
templates/CRM/Batch/Form/Entry.tpl,{$form.primary_contact_id.$rowNumber.html|crmAddClass:big}
templates/CRM/Batch/Form/Entry.tpl,{$form.member_option.$rowNumber.html}
templates/CRM/Batch/Form/Entry.tpl,{$form.open_pledges.$rowNumber.html}
templates/CRM/Batch/Form/Entry.tpl,{$form.soft_credit_contact_id.$rowNumber.html|crmAddClass:big}
templates/CRM/Batch/Form/Entry.tpl,{$form.soft_credit_amount.$rowNumber.label}
templates/CRM/Batch/Form/Entry.tpl,{$form.soft_credit_amount.$rowNumber.html|crmAddClass:eight}
templates/CRM/Batch/Form/Entry.tpl,{$form.soft_credit_type.$rowNumber.html}
templates/CRM/Batch/Form/Entry.tpl,{$form.pcp_made_through_id.$rowNumber.html}
templates/CRM/Batch/Form/Entry.tpl,{$form.pcp_made_through.$rowNumber.html}
templates/CRM/Batch/Form/Entry.tpl,{$form.pcp_display_in_roll.$rowNumber.label}
templates/CRM/Batch/Form/Entry.tpl,{$form.pcp_display_in_roll.$rowNumber.html}
templates/CRM/Batch/Form/Entry.tpl,{$form.pcp_roll_nickname.$rowNumber.label}
templates/CRM/Batch/Form/Entry.tpl,{$form.pcp_roll_nickname.$rowNumber.html}
templates/CRM/Batch/Form/Entry.tpl,{$form.pcp_personal_note.$rowNumber.label}
templates/CRM/Batch/Form/Entry.tpl,{$form.pcp_personal_note.$rowNumber.html}
templates/CRM/Batch/Form/Entry.tpl,{$form.field.$rowNumber.$n.html}
templates/CRM/Batch/Form/Entry.tpl,{$form.field.$rowNumber.$n.html}
templates/CRM/Batch/Form/Entry.tpl,{$rowNumber}
templates/CRM/Batch/Form/Entry.tpl,{$rowNumber}
templates/CRM/Batch/Form/Entry.tpl,{$form.option_type.$rowNumber.html}
templates/CRM/Batch/Form/Entry.tpl,{$form.field.$rowNumber.$n.html}
templates/CRM/Batch/Form/Entry.tpl,{$form.field.$rowNumber.$fieldName.value.name}
templates/CRM/Batch/Form/Entry.tpl,{$form._qf_Batch_refresh.html}
templates/CRM/Batch/Form/Entry.tpl,{$form.buttons.html}
templates/CRM/Batch/Form/Entry.tpl,{$form.formClass}
templates/CRM/Batch/Form/Entry.tpl,{$config->monetaryThousandSeparator}
templates/CRM/Batch/Form/Entry.tpl,{$config->monetaryDecimalPoint}
templates/CRM/Batch/Form/Entry.tpl,{$fldName|@json_encode}
templates/CRM/Batch/Form/Entry.tpl,{$config->dateInputFormat}
templates/CRM/Batch/Form/Search.tpl,{$form.title.html}
templates/CRM/Batch/Form/Search.tpl,{$status}
templates/CRM/Block/Add.tpl,{$postURL}
templates/CRM/Block/Add.tpl,{$primaryLocationType}
templates/CRM/Block/Add.tpl,{$email_greeting_id}
templates/CRM/Block/Add.tpl,{$postal_greeting_id}
templates/CRM/Block/Add.tpl,{$addressee_id}
templates/CRM/Block/blocks.tpl,{$block.name}
templates/CRM/Block/blocks.tpl,{$block.id}
templates/CRM/Block/blocks.tpl,{$block.subject}
templates/CRM/Block/blocks.tpl,{$block.content}
templates/CRM/Block/CreateNew.tpl,{$short.url}
templates/CRM/Block/CreateNew.tpl,{$short.ref}
templates/CRM/Block/CreateNew.tpl,{$short.title}
templates/CRM/Block/CreateNew.tpl,{$shortCut.url}
templates/CRM/Block/CreateNew.tpl,{$shortCut.ref}
templates/CRM/Block/CreateNew.tpl,{$shortCut.title}
templates/CRM/Block/Dashboard.tpl,{$dash.key}
templates/CRM/Block/Dashboard.tpl,{$dash.url}
templates/CRM/Block/Dashboard.tpl,{$dash.title}
templates/CRM/Block/Event.tpl,{$ev.url}
templates/CRM/Block/Event.tpl,{$ev.title}
templates/CRM/Block/Event.tpl,"{$ev.start_date|truncate:10:""""|crmDate}"
templates/CRM/Block/Event.tpl,{$evSummary}
templates/CRM/Block/Event.tpl,{$ev.url}
templates/CRM/Block/LangSwitch.tpl,{$locale}
templates/CRM/Block/LangSwitch.tpl,{$language}
templates/CRM/Block/Mail.tpl,{$short.url}
templates/CRM/Block/Mail.tpl,{$short.title}
templates/CRM/Block/RecentlyViewed.tpl,{$item.url}
templates/CRM/Block/RecentlyViewed.tpl,{$item.title|escape:'html'}
templates/CRM/Block/RecentlyViewed.tpl,{$item.subtype}
templates/CRM/Block/RecentlyViewed.tpl,{$item.type}
templates/CRM/Block/RecentlyViewed.tpl,{$item.image_url}
templates/CRM/Block/RecentlyViewed.tpl,{$item.type}
templates/CRM/Block/RecentlyViewed.tpl,{$item.title}
templates/CRM/Block/RecentlyViewed.tpl,{$item.url}
templates/CRM/Block/RecentlyViewed.tpl,{$item.edit_url}
templates/CRM/Block/RecentlyViewed.tpl,{$item.delete_url}
templates/CRM/Block/Subject.tpl,{$subject}
templates/CRM/Campaign/Form/addCampaignToComponent.tpl,{$campaignTrClass}
templates/CRM/Campaign/Form/addCampaignToComponent.tpl,{$campaignTdClass}
templates/CRM/Campaign/Form/addCampaignToComponent.tpl,{$form.$elementName.label}
templates/CRM/Campaign/Form/addCampaignToComponent.tpl,{$form.$elementName.html}
templates/CRM/Campaign/Form/addCampaignToComponent.tpl,{$campaignTrClass}
templates/CRM/Campaign/Form/addCampaignToComponent.tpl,{$form.campaign_id.label}
templates/CRM/Campaign/Form/addCampaignToComponent.tpl,{$form.campaign_id.html}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.title.label}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.title.html}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.campaign_type_id.label}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.campaign_type_id.html}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.description.label}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.description.html}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.includeGroups.label}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.includeGroups.html}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.start_date.label}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.start_date.html}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.end_date.label}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.end_date.html}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.status_id.label}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.status_id.html}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.goal_general.label}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.goal_general.html}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.goal_revenue.label}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.goal_revenue.html}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.external_identifier.label}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.external_identifier.html}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.parent_id.label}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.parent_id.html}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.is_active.label}
templates/CRM/Campaign/Form/Campaign.tpl,{$form.is_active.html}
templates/CRM/Campaign/Form/Gotv.tpl,{$errorMsg}
templates/CRM/Campaign/Form/Gotv.tpl,{$qfKey}
templates/CRM/Campaign/Form/Gotv.tpl,{$searchVoterFor}
templates/CRM/Campaign/Form/Gotv.tpl,{$searchVoterFor}
templates/CRM/Campaign/Form/Gotv.tpl,{$form.formClass}
templates/CRM/Campaign/Form/Gotv.tpl,{$searchParams}
templates/CRM/Campaign/Form/Gotv.tpl,{$surveyTitle|escape:javascript}
templates/CRM/Campaign/Form/Petition/Signature.tpl,{$petition.instructions}
templates/CRM/Campaign/Form/Petition.tpl,{$form.title.label}
templates/CRM/Campaign/Form/Petition.tpl,{$form.title.html}
templates/CRM/Campaign/Form/Petition.tpl,{$form.instructions.label}
templates/CRM/Campaign/Form/Petition.tpl,{$form.instructions.html}
templates/CRM/Campaign/Form/Petition.tpl,{$form.campaign_id.label}
templates/CRM/Campaign/Form/Petition.tpl,{$form.campaign_id.html}
templates/CRM/Campaign/Form/Petition.tpl,{$form.activity_type_id.label}
templates/CRM/Campaign/Form/Petition.tpl,{$form.activity_type_id.html}
templates/CRM/Campaign/Form/Petition.tpl,{$form.contact_profile_id.label}
templates/CRM/Campaign/Form/Petition.tpl,{$form.contact_profile_id.html}
templates/CRM/Campaign/Form/Petition.tpl,{$form.profile_id.label}
templates/CRM/Campaign/Form/Petition.tpl,{$form.profile_id.html}
templates/CRM/Campaign/Form/Petition.tpl,{$form.thankyou_title.label}
templates/CRM/Campaign/Form/Petition.tpl,{$form.thankyou_title.html}
templates/CRM/Campaign/Form/Petition.tpl,{$form.thankyou_text.label}
templates/CRM/Campaign/Form/Petition.tpl,{$form.thankyou_text.html}
templates/CRM/Campaign/Form/Petition.tpl,{$form.bypass_confirm.label}
templates/CRM/Campaign/Form/Petition.tpl,{$form.bypass_confirm.html}
templates/CRM/Campaign/Form/Petition.tpl,{$form.is_share.label}
templates/CRM/Campaign/Form/Petition.tpl,{$form.is_share.html}
templates/CRM/Campaign/Form/Petition.tpl,{$form.is_active.label}
templates/CRM/Campaign/Form/Petition.tpl,{$form.is_active.html}
templates/CRM/Campaign/Form/Petition.tpl,{$form.is_default.label}
templates/CRM/Campaign/Form/Petition.tpl,{$form.is_default.html}
templates/CRM/Campaign/Form/ResultOptions.tpl,{$form.option_type.label}
templates/CRM/Campaign/Form/ResultOptions.tpl,{$form.option_type.html}
templates/CRM/Campaign/Form/ResultOptions.tpl,{$form.option_group_id.label}
templates/CRM/Campaign/Form/ResultOptions.tpl,{$form.option_group_id.html}
templates/CRM/Campaign/Form/ResultOptions.tpl,{$index}
templates/CRM/Campaign/Form/ResultOptions.tpl,{$index}
templates/CRM/Campaign/Form/ResultOptions.tpl,{$index}
templates/CRM/Campaign/Form/ResultOptions.tpl,{$index}
templates/CRM/Campaign/Form/ResultOptions.tpl,{$form.default_option[$index].html}
templates/CRM/Campaign/Form/ResultOptions.tpl,{$form.option_label.$index.html}
templates/CRM/Campaign/Form/ResultOptions.tpl,{$form.option_value.$index.html}
templates/CRM/Campaign/Form/ResultOptions.tpl,{$form.option_interval.$index.html}
templates/CRM/Campaign/Form/ResultOptions.tpl,{$form.option_weight.$index.html}
templates/CRM/Campaign/Form/ResultOptions.tpl,{$showBlocks}
templates/CRM/Campaign/Form/ResultOptions.tpl,{$hideBlocks}
templates/CRM/Campaign/Form/ResultOptions.tpl,{$surveyId}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$searchForm}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$form.campaign_title.label}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$form.campaign_title.html}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$form.description.label}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$form.description.html|crmAddClass:huge}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$form.start_date.label}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$form.start_date.html}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$form.end_date.label}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$form.end_date.html}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$form.campaign_type_id.label}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$form.campaign_type_id.html}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$form.status_id.label}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$form.status_id.html}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$form.is_active.label}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$form.is_active.html}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$form.buttons.html}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$qfKey}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$searchFor}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$searchParams}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$campaignTypes}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$campaignStatus}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$searchParams}
templates/CRM/Campaign/Form/Search/Campaign.tpl,{$qfKey}
templates/CRM/Campaign/Form/Search/Common.tpl,{$searchForm}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.campaign_survey_id.label}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.campaign_survey_id.html}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.survey_interviewer_id.label}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.survey_interviewer_id.html}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.sort_name.label}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.sort_name.html|crmAddClass:'twenty'}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.contact_type.html}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.group.html}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.street_address.label}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.street_address.html}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.street_name.label}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.street_name.html}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.street_unit.label}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.street_unit.html}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.city.label}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.city.html}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.street_number.label}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.street_number.html}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.postal_code.label}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.postal_code.html}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.$ward.label}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.$ward.html}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.$precinct.label}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.$precinct.html}
templates/CRM/Campaign/Form/Search/Common.tpl,{$form.buttons.html}
templates/CRM/Campaign/Form/Search/Common.tpl,{$qfKey}
templates/CRM/Campaign/Form/Search/Common.tpl,{$searchVoterFor}
templates/CRM/Campaign/Form/Search/Petition.tpl,{$searchForm}
templates/CRM/Campaign/Form/Search/Petition.tpl,{$form.petition_title.label}
templates/CRM/Campaign/Form/Search/Petition.tpl,{$form.petition_title.html}
templates/CRM/Campaign/Form/Search/Petition.tpl,{$form.petition_campaign_id.label}
templates/CRM/Campaign/Form/Search/Petition.tpl,{$form.petition_campaign_id.html}
templates/CRM/Campaign/Form/Search/Petition.tpl,{$form.buttons.html}
templates/CRM/Campaign/Form/Search/Petition.tpl,{$qfKey}
templates/CRM/Campaign/Form/Search/Petition.tpl,{$qfKey}
templates/CRM/Campaign/Form/Search/Petition.tpl,{$searchFor}
templates/CRM/Campaign/Form/Search/Petition.tpl,{$searchParams}
templates/CRM/Campaign/Form/Search/Petition.tpl,{$petitionCampaigns}
templates/CRM/Campaign/Form/Search/Petition.tpl,{$searchParams}
templates/CRM/Campaign/Form/Search/Survey.tpl,{$searchForm}
templates/CRM/Campaign/Form/Search/Survey.tpl,{$form.survey_title.label}
templates/CRM/Campaign/Form/Search/Survey.tpl,{$form.survey_title.html}
templates/CRM/Campaign/Form/Search/Survey.tpl,{$form.activity_type_id.label}
templates/CRM/Campaign/Form/Search/Survey.tpl,{$form.activity_type_id.html}
templates/CRM/Campaign/Form/Search/Survey.tpl,{$form.survey_campaign_id.label}
templates/CRM/Campaign/Form/Search/Survey.tpl,{$form.survey_campaign_id.html}
templates/CRM/Campaign/Form/Search/Survey.tpl,{$form.buttons.html}
templates/CRM/Campaign/Form/Search/Survey.tpl,{$qfKey}
templates/CRM/Campaign/Form/Search/Survey.tpl,{$qfKey}
templates/CRM/Campaign/Form/Search/Survey.tpl,{$searchFor}
templates/CRM/Campaign/Form/Search/Survey.tpl,{$searchParams}
templates/CRM/Campaign/Form/Search/Survey.tpl,{$surveyTypes}
templates/CRM/Campaign/Form/Search/Survey.tpl,{$surveyCampaigns}
templates/CRM/Campaign/Form/Search/Survey.tpl,{$searchParams}
templates/CRM/Campaign/Form/Selector.tpl,{$form.toggleSelect.html}
templates/CRM/Campaign/Form/Selector.tpl,{$sort->_response.$key.link}
templates/CRM/Campaign/Form/Selector.tpl,{$header.name}
templates/CRM/Campaign/Form/Selector.tpl,{$row.contact_id}
templates/CRM/Campaign/Form/Selector.tpl,{$form.$cbName.html}
templates/CRM/Campaign/Form/Selector.tpl,{$row.contact_type}
templates/CRM/Campaign/Form/Selector.tpl,{$row.sort_name}
templates/CRM/Campaign/Form/Selector.tpl,{$row.street_number}
templates/CRM/Campaign/Form/Selector.tpl,{$row.street_name}
templates/CRM/Campaign/Form/Selector.tpl,{$row.street_address}
templates/CRM/Campaign/Form/Selector.tpl,{$row.city}
templates/CRM/Campaign/Form/Selector.tpl,{$row.postal_code}
templates/CRM/Campaign/Form/Selector.tpl,{$row.state_province}
templates/CRM/Campaign/Form/Selector.tpl,{$row.country}
templates/CRM/Campaign/Form/Selector.tpl,{$row.email}
templates/CRM/Campaign/Form/Selector.tpl,{$row.phone}
templates/CRM/Campaign/Form/Survey/Main.tpl,{$form.title.label}
templates/CRM/Campaign/Form/Survey/Main.tpl,{$form.title.html}
templates/CRM/Campaign/Form/Survey/Main.tpl,{$form.campaign_id.label}
templates/CRM/Campaign/Form/Survey/Main.tpl,{$form.campaign_id.html}
templates/CRM/Campaign/Form/Survey/Main.tpl,{$form.activity_type_id.label}
templates/CRM/Campaign/Form/Survey/Main.tpl,{$form.activity_type_id.html}
templates/CRM/Campaign/Form/Survey/Main.tpl,{$form.instructions.label}
templates/CRM/Campaign/Form/Survey/Main.tpl,{$form.instructions.html}
templates/CRM/Campaign/Form/Survey/Main.tpl,{$form.default_number_of_contacts.label}
templates/CRM/Campaign/Form/Survey/Main.tpl,{$form.default_number_of_contacts.html}
templates/CRM/Campaign/Form/Survey/Main.tpl,{$form.max_number_of_contacts.label}
templates/CRM/Campaign/Form/Survey/Main.tpl,{$form.max_number_of_contacts.html}
templates/CRM/Campaign/Form/Survey/Main.tpl,{$form.release_frequency.label}
templates/CRM/Campaign/Form/Survey/Main.tpl,{$form.release_frequency.html}
templates/CRM/Campaign/Form/Survey/Main.tpl,{$form.is_active.label}
templates/CRM/Campaign/Form/Survey/Main.tpl,{$form.is_active.html}
templates/CRM/Campaign/Form/Survey/Main.tpl,{$form.is_default.label}
templates/CRM/Campaign/Form/Survey/Main.tpl,{$form.is_default.html}
templates/CRM/Campaign/Form/Survey/Questions.tpl,{$form.contact_profile_id.label}
templates/CRM/Campaign/Form/Survey/Questions.tpl,{$form.contact_profile_id.html}
templates/CRM/Campaign/Form/Survey/Questions.tpl,{$form.activity_profile_id.label}
templates/CRM/Campaign/Form/Survey/Questions.tpl,{$form.activity_profile_id.html}
templates/CRM/Campaign/Form/Survey/Results.tpl,{$form.create_report.label}
templates/CRM/Campaign/Form/Survey/Results.tpl,{$form.create_report.html}
templates/CRM/Campaign/Form/Survey/Results.tpl,{$form.report_title.label}
templates/CRM/Campaign/Form/Survey/Results.tpl,{$form.report_title.html|crmAddClass:big}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$errorMsg}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$instanceURL}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$index}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$index}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$index}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$config->resourceBase}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$form.order_bys.$index.column.html}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$form.order_bys.$index.order.html}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$form.buttons._qf_Interview_submit_orderBy.html}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$config->resourceBase}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$instanceId}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$fTitle}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$config->resourceBase}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$field.name}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$field.title}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$config->resourceBase}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$config->resourceBase}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$voterId}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$voterId}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$voterDetails.$voterId.$fName}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$field.data_type}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$fieldName}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$form.field.$voterId.$fieldName.html}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$form.field.$voterId.$phone_ext_field.html}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$form.field.$voterId.$fieldName.html}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$form.field.$voterId.note.html}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$form.field.$voterId.result.html}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$voterId}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$voterId}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$voterId}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$voterId}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$voterId}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$voterId}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$form.buttons._qf_Interview_cancel_interview.html}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$form.buttons._qf_Interview_next_interviewToRelease.html}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$form.buttons._qf_Interview_done_interviewToReserve.html}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$instanceId}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$instanceId}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$surveyActivityIds}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$interviewerId}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$surveyTypeId}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$surveyValues.title|escape:javascript}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$surveyValues.id}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$surveyActivityIds}
templates/CRM/Campaign/Form/Task/Interview.tpl,{$componentIdsJson}
templates/CRM/Campaign/Form/Task/Print.tpl,{$form.buttons.html}
templates/CRM/Campaign/Form/Task/Print.tpl,{$form.buttons.html}
templates/CRM/Campaign/Form/Task/Reserve.tpl,{$form.newGroupName.label}
templates/CRM/Campaign/Form/Task/Reserve.tpl,{$form.newGroupName.html}
templates/CRM/Campaign/Form/Task/Reserve.tpl,{$form.newGroupDesc.label}
templates/CRM/Campaign/Form/Task/Reserve.tpl,{$form.newGroupDesc.html}
templates/CRM/Campaign/Form/Task/Reserve.tpl,{$form.groups.html}
templates/CRM/Campaign/Form/Task/Reserve.tpl,{$invalidGroupName}
templates/CRM/Campaign/Form/Task/Result.tpl,{$form.buttons.html}
templates/CRM/Campaign/Page/Petition/Confirm.tpl,{$thankyou_text}
templates/CRM/Campaign/Page/Petition/ThankYou.tpl,{$thankyou_text}
templates/CRM/Campaign/Page/Petition.tpl,{$addSurveyUrl}
templates/CRM/Campaign/Page/Petition.tpl,{$survey.id}
templates/CRM/Campaign/Page/Petition.tpl,{$survey.title}
templates/CRM/Campaign/Page/Petition.tpl,{$survey.campaign_id}
templates/CRM/Campaign/Page/Petition.tpl,{$survey.activity_type_id}
templates/CRM/Campaign/Page/Petition.tpl,{$survey.release_frequency}
templates/CRM/Campaign/Page/Petition.tpl,{$survey.max_number_of_contacts}
templates/CRM/Campaign/Page/Petition.tpl,{$survey.default_number_of_contacts}
templates/CRM/Campaign/Page/Petition.tpl,{$config->resourceBase}
templates/CRM/Campaign/Page/Petition.tpl,{$survey.id}
templates/CRM/Campaign/Page/Petition.tpl,{$survey.action}
templates/CRM/Campaign/Page/Petition.tpl,{$addSurveyUrl}
templates/CRM/Campaign/Page/SurveyType.tpl,{$gName}
templates/CRM/Campaign/Page/SurveyType.tpl,{$row.id}
templates/CRM/Campaign/Page/SurveyType.tpl,{$row.id}
templates/CRM/Campaign/Page/SurveyType.tpl,{$row.label}
templates/CRM/Campaign/Page/SurveyType.tpl,{$row.value}
templates/CRM/Campaign/Page/SurveyType.tpl,{$row.description}
templates/CRM/Campaign/Page/SurveyType.tpl,{$row.weight}
templates/CRM/Campaign/Page/SurveyType.tpl,{$row.id}
templates/CRM/Campaign/Page/SurveyType.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Case/Audit/Audit.tpl,{$config->resourceBase}
templates/CRM/Case/Audit/Audit.tpl,{$config->resourceBase}
templates/CRM/Case/Audit/Audit.tpl,{$caseId}
templates/CRM/Case/Audit/Audit.tpl,{$caseId}
templates/CRM/Case/Audit/Audit.tpl,{$smarty.foreach.activityloop.iteration}
templates/CRM/Case/Audit/Audit.tpl,{$config->resourceBase}
templates/CRM/Case/Audit/Audit.tpl,{$smarty.foreach.activityloop.iteration}
templates/CRM/Case/Audit/Audit.tpl,{$config->resourceBase}
templates/CRM/Case/Audit/Audit.tpl,{$smarty.foreach.activityloop.iteration}
templates/CRM/Case/Audit/Audit.tpl,{$field.label|lower|regex_replace:'/[^a-z0-9]+/':''}
templates/CRM/Case/Audit/Audit.tpl,{$field.datatype}
templates/CRM/Case/Audit/Audit.tpl,{$field.value|escape}
templates/CRM/Case/Audit/Audit.tpl,"{$field.value|escape|replace:'T':' '|crmDate}"
templates/CRM/Case/Audit/Audit.tpl,{$field.value|escape|truncate:10:'':true|crmDate}
templates/CRM/Case/Audit/Audit.tpl,{$field.value|escape}
templates/CRM/Case/Audit/Audit.tpl,{$smarty.foreach.activityloop.iteration}
templates/CRM/Case/Audit/Audit.tpl,{$activity.editurl}
templates/CRM/Case/Audit/Audit.tpl,{$field.label|lower|regex_replace:'/[^a-z0-9]+/':''}
templates/CRM/Case/Audit/Audit.tpl,{$field.label|escape}
templates/CRM/Case/Audit/Audit.tpl,{$field.datatype}
templates/CRM/Case/Audit/Audit.tpl,{$field.value|escape}
templates/CRM/Case/Audit/Audit.tpl,"{$field.value|escape|replace:'T':' '|crmDate}"
templates/CRM/Case/Audit/Audit.tpl,{$field.value|escape|truncate:10:'':true|crmDate}
templates/CRM/Case/Audit/Audit.tpl,{$field.value|escape}
templates/CRM/Case/Audit/Audit.tpl,{$smarty.foreach.activityloop.iteration}
templates/CRM/Case/Audit/Audit.tpl,{$field.label|lower|regex_replace:'/[^a-z0-9]+/':''}
templates/CRM/Case/Audit/Audit.tpl,{$field.label|escape}
templates/CRM/Case/Audit/Audit.tpl,{$field.datatype}
templates/CRM/Case/Audit/Audit.tpl,{$field.value|escape}
templates/CRM/Case/Audit/Audit.tpl,"{$field.value|escape|replace:'T':' '|crmDate}"
templates/CRM/Case/Audit/Audit.tpl,{$field.value|escape|truncate:10:'':true|crmDate}
templates/CRM/Case/Audit/Audit.tpl,{$field.value}
templates/CRM/Case/Audit/Audit.tpl,{$field.value|escape}
templates/CRM/Case/Audit/Audit.tpl,{$caseId}
templates/CRM/Case/Audit/Audit.tpl,{$caseId}
templates/CRM/Case/Audit/Audit.tpl,{$clientID}
templates/CRM/Case/Audit/Audit.tpl,{$activitySetName|@json_encode}
templates/CRM/Case/Audit/Audit.tpl,{$_isRedact}
templates/CRM/Case/Audit/Audit.tpl,{$includeActivities}
templates/CRM/Case/Audit/Audit.tpl,{$clientID}
templates/CRM/Case/Audit/Report.tpl,"{$config->lcMessages|truncate:2:"""":true}"
templates/CRM/Case/Audit/Report.tpl,"{$config->lcMessages|truncate:2:"""":true}"
templates/CRM/Case/Audit/Report.tpl,{$pageTitle}
templates/CRM/Case/Audit/Report.tpl,{$config->userFrameworkResourceURL}
templates/CRM/Case/Audit/Report.tpl,{$pageTitle}
templates/CRM/Case/Audit/Report.tpl,{$reportDate}
templates/CRM/Case/Audit/Report.tpl,{$case.clientName}
templates/CRM/Case/Audit/Report.tpl,{$case.caseType}
templates/CRM/Case/Audit/Report.tpl,{$case.status}
templates/CRM/Case/Audit/Report.tpl,{$case.start_date}
templates/CRM/Case/Audit/Report.tpl,{$caseId}
templates/CRM/Case/Audit/Report.tpl,{$caseId}
templates/CRM/Case/Audit/Report.tpl,{$row.relation}
templates/CRM/Case/Audit/Report.tpl,{$row.name}
templates/CRM/Case/Audit/Report.tpl,{$row.phone}
templates/CRM/Case/Audit/Report.tpl,{$row.email}
templates/CRM/Case/Audit/Report.tpl,{$relName}
templates/CRM/Case/Audit/Report.tpl,{$relName.role}
templates/CRM/Case/Audit/Report.tpl,{$relName.sort_name}
templates/CRM/Case/Audit/Report.tpl,{$relName.phone}
templates/CRM/Case/Audit/Report.tpl,{$relName.email}
templates/CRM/Case/Audit/Report.tpl,{$row.relation}
templates/CRM/Case/Audit/Report.tpl,{$row.name}
templates/CRM/Case/Audit/Report.tpl,{$row.phone}
templates/CRM/Case/Audit/Report.tpl,{$row.email}
templates/CRM/Case/Audit/Report.tpl,{$globalGroupInfo.title}
templates/CRM/Case/Audit/Report.tpl,{$row.sort_name}
templates/CRM/Case/Audit/Report.tpl,{$row.phone}
templates/CRM/Case/Audit/Report.tpl,{$row.email}
templates/CRM/Case/Audit/Report.tpl,{$group.title}
templates/CRM/Case/Audit/Report.tpl,{$row.label}
templates/CRM/Case/Audit/Report.tpl,{$row.value}
templates/CRM/Case/Audit/Report.tpl,{$field.label}
templates/CRM/Case/Audit/Report.tpl,{$field.label|escape}
templates/CRM/Case/Audit/Report.tpl,{$field.value|escape}
templates/CRM/Case/Audit/Report.tpl,{$field.value}
templates/CRM/Case/Audit/Report.tpl,{$field.value|escape}
templates/CRM/Case/Form/Activity/ChangeCaseStartDate.tpl,{$form.case_type_id.label}
templates/CRM/Case/Form/Activity/ChangeCaseStartDate.tpl,{$form.case_type_id.html}
templates/CRM/Case/Form/Activity/ChangeCaseStartDate.tpl,{$current_start_date|crmDate}
templates/CRM/Case/Form/Activity/ChangeCaseStartDate.tpl,{$form.start_date.label}
templates/CRM/Case/Form/Activity/ChangeCaseStartDate.tpl,{$form.start_date.html}
templates/CRM/Case/Form/Activity/ChangeCaseStatus.tpl,{$form.case_status_id.label}
templates/CRM/Case/Form/Activity/ChangeCaseStatus.tpl,{$form.case_status_id.html}
templates/CRM/Case/Form/Activity/ChangeCaseStatus.tpl,{$form.updateLinkedCases.html}
templates/CRM/Case/Form/Activity/ChangeCaseStatus.tpl,{$linkedCase.case_id}
templates/CRM/Case/Form/Activity/ChangeCaseStatus.tpl,{$linkedCase.client_name}
templates/CRM/Case/Form/Activity/ChangeCaseStatus.tpl,{$linkedCase.case_type}
templates/CRM/Case/Form/Activity/ChangeCaseStatus.tpl,{$linkedCase.case_status}
templates/CRM/Case/Form/Activity/ChangeCaseType.tpl,{$form.case_type_id.label}
templates/CRM/Case/Form/Activity/ChangeCaseType.tpl,{$form.case_type_id.html}
templates/CRM/Case/Form/Activity/ChangeCaseType.tpl,{$form.is_reset_timeline.label}
templates/CRM/Case/Form/Activity/ChangeCaseType.tpl,{$form.is_reset_timeline.html}
templates/CRM/Case/Form/Activity/ChangeCaseType.tpl,{$form.reset_date_time.label}
templates/CRM/Case/Form/Activity/ChangeCaseType.tpl,{$form.reset_date_time.html}
templates/CRM/Case/Form/Activity/ChangeCaseType.tpl,{$form.formClass}
templates/CRM/Case/Form/Activity/LinkCases.tpl,{$form.link_to_case_id.label}
templates/CRM/Case/Form/Activity/LinkCases.tpl,{$form.link_to_case_id.html}
templates/CRM/Case/Form/Activity/LinkCases.tpl,{$form.formClass}
templates/CRM/Case/Form/Activity/OpenCase.tpl,{$form.case_type_id.label}
templates/CRM/Case/Form/Activity/OpenCase.tpl,{$form.case_type_id.html}
templates/CRM/Case/Form/Activity/OpenCase.tpl,{$form.status_id.label}
templates/CRM/Case/Form/Activity/OpenCase.tpl,{$form.status_id.html}
templates/CRM/Case/Form/Activity/OpenCase.tpl,{$form.start_date.label}
templates/CRM/Case/Form/Activity/OpenCase.tpl,{$form.start_date.html}
templates/CRM/Case/Form/Activity/OpenCase.tpl,{$form.formClass}
templates/CRM/Case/Form/Activity/OpenCase.tpl,{$caseTypes.values|@json_encode}
templates/CRM/Case/Form/Activity/OpenCase.tpl,{$caseStatusLabels.values|@json_encode}
templates/CRM/Case/Form/Activity/OpenCase.tpl,{$caseStatusNames.values|@json_encode}
templates/CRM/Case/Form/Activity.tpl,{$activityTypeDescription}
templates/CRM/Case/Form/Activity.tpl,{$form.details.html}
templates/CRM/Case/Form/Activity.tpl,{$client1.display_name}
templates/CRM/Case/Form/Activity.tpl,{$form.target_contact_id.html}
templates/CRM/Case/Form/Activity.tpl,{$activityTypeName|escape}
templates/CRM/Case/Form/Activity.tpl,{$form.source_contact_id.label}
templates/CRM/Case/Form/Activity.tpl,{$form.source_contact_id.html}
templates/CRM/Case/Form/Activity.tpl,{$form.assignee_contact_id.label}
templates/CRM/Case/Form/Activity.tpl,{$form.assignee_contact_id.html}
templates/CRM/Case/Form/Activity.tpl,{$form.subject.label}
templates/CRM/Case/Form/Activity.tpl,{$form.subject.html|crmAddClass:huge}
templates/CRM/Case/Form/Activity.tpl,{$form.medium_id.label}
templates/CRM/Case/Form/Activity.tpl,{$form.medium_id.html}
templates/CRM/Case/Form/Activity.tpl,{$form.location.label}
templates/CRM/Case/Form/Activity.tpl,{$form.location.html|crmAddClass:huge}
templates/CRM/Case/Form/Activity.tpl,{$form.activity_date_time.label}
templates/CRM/Case/Form/Activity.tpl,{$form.activity_date_time.html}
templates/CRM/Case/Form/Activity.tpl,{$changeStartURL}
templates/CRM/Case/Form/Activity.tpl,{$form.details.html}
templates/CRM/Case/Form/Activity.tpl,{$form.details.label}
templates/CRM/Case/Form/Activity.tpl,{$form.details.html}
templates/CRM/Case/Form/Activity.tpl,{$form.duration.label}
templates/CRM/Case/Form/Activity.tpl,{$form.duration.html}
templates/CRM/Case/Form/Activity.tpl,{$form.toggleSelect.html}
templates/CRM/Case/Form/Activity.tpl,{$id1}
templates/CRM/Case/Form/Activity.tpl,{$form.contact_check[$id1].html}
templates/CRM/Case/Form/Activity.tpl,{$row1.role}
templates/CRM/Case/Form/Activity.tpl,{$row1.display_name}
templates/CRM/Case/Form/Activity.tpl,{$row1.email}
templates/CRM/Case/Form/Activity.tpl,{$row1.managerOf}
templates/CRM/Case/Form/Activity.tpl,{$form.status_id.label}
templates/CRM/Case/Form/Activity.tpl,{$form.status_id.html}
templates/CRM/Case/Form/Activity.tpl,{$form.priority_id.label}
templates/CRM/Case/Form/Activity.tpl,{$form.priority_id.html}
templates/CRM/Case/Form/Activity.tpl,{$form.tag.label}
templates/CRM/Case/Form/Activity.tpl,{$form.tag.html}
templates/CRM/Case/Form/Activity.tpl,{$doNotNotifyAssigneeFor|@json_encode}
templates/CRM/Case/Form/ActivityTab.tpl,{$form.reporter_id.html|crmAddClass:twenty}
templates/CRM/Case/Form/ActivityTab.tpl,{$form.status_id.label}
templates/CRM/Case/Form/ActivityTab.tpl,{$form.status_id.html}
templates/CRM/Case/Form/ActivityTab.tpl,{$form.$activitylow.label}
templates/CRM/Case/Form/ActivityTab.tpl,{$form.$activitylow.html}
templates/CRM/Case/Form/ActivityTab.tpl,{$form.$activityhigh.label}
templates/CRM/Case/Form/ActivityTab.tpl,{$form.$activityhigh.html}
templates/CRM/Case/Form/ActivityTab.tpl,{$form.activity_type_filter_id.label}
templates/CRM/Case/Form/ActivityTab.tpl,{$form.activity_type_filter_id.html}
templates/CRM/Case/Form/ActivityTab.tpl,{$form.activity_deleted.html}
templates/CRM/Case/Form/ActivityTab.tpl,{$form.activity_deleted.label}
templates/CRM/Case/Form/ActivityTab.tpl,{$caseid}
templates/CRM/Case/Form/ActivityTab.tpl,{$caseID}
templates/CRM/Case/Form/ActivityTab.tpl,{$caseID}
templates/CRM/Case/Form/ActivityTab.tpl,{$status.value}
templates/CRM/Case/Form/ActivityTab.tpl,{$status.color}
templates/CRM/Case/Form/ActivityToCase.tpl,{$form.file_on_case_unclosed_case_id.label}
templates/CRM/Case/Form/ActivityToCase.tpl,{$form.file_on_case_unclosed_case_id.html}
templates/CRM/Case/Form/ActivityToCase.tpl,{$form.file_on_case_target_contact_id.label}
templates/CRM/Case/Form/ActivityToCase.tpl,{$form.file_on_case_target_contact_id.html}
templates/CRM/Case/Form/ActivityToCase.tpl,{$form.file_on_case_activity_subject.label}
templates/CRM/Case/Form/ActivityToCase.tpl,{$form.file_on_case_activity_subject.html}
templates/CRM/Case/Form/ActivityToCase.tpl,{$contactID}
templates/CRM/Case/Form/ActivityToCase.tpl,{$fulltext}
templates/CRM/Case/Form/ActivityView.tpl,{$row.name}
templates/CRM/Case/Form/ActivityView.tpl,{$row.date|crmDate}
templates/CRM/Case/Form/ActivityView.tpl,{$row.id}
templates/CRM/Case/Form/ActivityView.tpl,{$row.id}
templates/CRM/Case/Form/ActivityView.tpl,{$row.label}
templates/CRM/Case/Form/ActivityView.tpl,{$row.label}
templates/CRM/Case/Form/ActivityView.tpl,{$row.value}
templates/CRM/Case/Form/ActivityView.tpl,{$row.value|crmStripAlternatives|nl2br}
templates/CRM/Case/Form/ActivityView.tpl,{$row.value|crmDate}
templates/CRM/Case/Form/ActivityView.tpl,{$row.value}
templates/CRM/Case/Form/ActivityView.tpl,{$groupTitle}
templates/CRM/Case/Form/ActivityView.tpl,{$customField.label}
templates/CRM/Case/Form/ActivityView.tpl,{$customField.value}
templates/CRM/Case/Form/AddToCaseAsRole.tpl,{$form.assign_to.label}
templates/CRM/Case/Form/AddToCaseAsRole.tpl,{$form.assign_to.html}
templates/CRM/Case/Form/AddToCaseAsRole.tpl,{$form.role_type.label}
templates/CRM/Case/Form/AddToCaseAsRole.tpl,{$form.role_type.html}
templates/CRM/Case/Form/Case.tpl,{$activityTypeDescription}
templates/CRM/Case/Form/Case.tpl,{$clientName}
templates/CRM/Case/Form/Case.tpl,{$form.client_id.label}
templates/CRM/Case/Form/Case.tpl,{$form.client_id.html}
templates/CRM/Case/Form/Case.tpl,{$form.medium_id.label}
templates/CRM/Case/Form/Case.tpl,{$form.medium_id.html}
templates/CRM/Case/Form/Case.tpl,{$form.activity_location.label}
templates/CRM/Case/Form/Case.tpl,{$form.activity_location.html}
templates/CRM/Case/Form/Case.tpl,{$form.activity_details.label}
templates/CRM/Case/Form/Case.tpl,{$form.activity_details.html|crmStripAlternatives}
templates/CRM/Case/Form/Case.tpl,{$form.activity_subject.label}
templates/CRM/Case/Form/Case.tpl,{$form.activity_subject.html|crmAddClass:huge}
templates/CRM/Case/Form/Case.tpl,{$form.duration.label}
templates/CRM/Case/Form/Case.tpl,{$form.duration.html}
templates/CRM/Case/Form/Case.tpl,{$form.tag.label}
templates/CRM/Case/Form/Case.tpl,{$form.tag.html}
templates/CRM/Case/Form/CaseFilter.tpl,{$list}
templates/CRM/Case/Form/CaseFilter.tpl,{$list}
templates/CRM/Case/Form/CaseFilter.tpl,{$form.case_type_id.label}
templates/CRM/Case/Form/CaseFilter.tpl,{$form.case_type_id.html}
templates/CRM/Case/Form/CaseFilter.tpl,{$form.case_status_id.label}
templates/CRM/Case/Form/CaseFilter.tpl,{$form.case_status_id.html}
templates/CRM/Case/Form/CaseFilter.tpl,{$form.upcoming.html}
templates/CRM/Case/Form/CaseFilter.tpl,{$form.upcoming.label}
templates/CRM/Case/Form/CaseView.tpl,{$caseID}
templates/CRM/Case/Form/CaseView.tpl,{$contactID}
templates/CRM/Case/Form/CaseView.tpl,{$client.display_name}
templates/CRM/Case/Form/CaseView.tpl,{$contactType}
templates/CRM/Case/Form/CaseView.tpl,{$relatedCaseUrl}
templates/CRM/Case/Form/CaseView.tpl,{$relatedCaseLabel}
templates/CRM/Case/Form/CaseView.tpl,{$client.display_name}
templates/CRM/Case/Form/CaseView.tpl,{$client.phone}
templates/CRM/Case/Form/CaseView.tpl,{$client.birth_date|crmDate}
templates/CRM/Case/Form/CaseView.tpl,{$relatedCaseUrl}
templates/CRM/Case/Form/CaseView.tpl,{$relatedCaseLabel}
templates/CRM/Case/Form/CaseView.tpl,{$caseDetails.case_subject}
templates/CRM/Case/Form/CaseView.tpl,{$caseDetails.case_type}
templates/CRM/Case/Form/CaseView.tpl,{$caseDetails.case_status}
templates/CRM/Case/Form/CaseView.tpl,{$caseDetails.case_start_date|crmDate}
templates/CRM/Case/Form/CaseView.tpl,{$caseID}
templates/CRM/Case/Form/CaseView.tpl,{$caseID}
templates/CRM/Case/Form/CaseView.tpl,{$div_id}
templates/CRM/Case/Form/CaseView.tpl,{$val.label}
templates/CRM/Case/Form/CaseView.tpl,{$val.value}
templates/CRM/Case/Form/CaseView.tpl,{$form.add_activity_type_id.html}
templates/CRM/Case/Form/CaseView.tpl,{$form.timeline_id.html}
templates/CRM/Case/Form/CaseView.tpl,{$form._qf_CaseView_next.html}
templates/CRM/Case/Form/CaseView.tpl,{$form.report_id.html}
templates/CRM/Case/Form/CaseView.tpl,{$exportDoc}
templates/CRM/Case/Form/CaseView.tpl,{$form._qf_CaseView_next_merge_case.html}
templates/CRM/Case/Form/CaseView.tpl,{$form.merge_case_id.html}
templates/CRM/Case/Form/CaseView.tpl,{$caseID}
templates/CRM/Case/Form/CaseView.tpl,{$form.role_type.label}
templates/CRM/Case/Form/CaseView.tpl,{$form.role_type.html}
templates/CRM/Case/Form/CaseView.tpl,{$caseID}
templates/CRM/Case/Form/CaseView.tpl,{$caseID}
templates/CRM/Case/Form/CaseView.tpl,{$caseID}
templates/CRM/Case/Form/CaseView.tpl,{$caseID}
templates/CRM/Case/Form/CaseView.tpl,{$caseId}
templates/CRM/Case/Form/CaseView.tpl,{$globalGroupInfo.id}
templates/CRM/Case/Form/CaseView.tpl,{$caseId}
templates/CRM/Case/Form/CaseView.tpl,{$globalGroupInfo.title}
templates/CRM/Case/Form/CaseView.tpl,{$caseID}
templates/CRM/Case/Form/CaseView.tpl,{$tag.color}
templates/CRM/Case/Form/CaseView.tpl,{$tag.color|colorContrast}
templates/CRM/Case/Form/CaseView.tpl,{$tag.text}
templates/CRM/Case/Form/CaseView.tpl,{$displayTagset.name}
templates/CRM/Case/Form/CaseView.tpl,{$form.case_tag.label}
templates/CRM/Case/Form/CaseView.tpl,{$form.case_tag.html}
templates/CRM/Case/Form/EditClient.tpl,{$form.reassign_contact_id.label}
templates/CRM/Case/Form/EditClient.tpl,{$form.reassign_contact_id.html}
templates/CRM/Case/Form/Report.tpl,{$report}
templates/CRM/Case/Form/Report.tpl,{$form.include_activities.label}
templates/CRM/Case/Form/Report.tpl,{$form.include_activities.html}
templates/CRM/Case/Form/Report.tpl,{$form.is_redact.html}
templates/CRM/Case/Form/Report.tpl,{$form.is_redact.label}
templates/CRM/Case/Form/Search/Common.tpl,{$form.case_id.label}
templates/CRM/Case/Form/Search/Common.tpl,{$form.case_id.html}
templates/CRM/Case/Form/Search/Common.tpl,{$form.case_subject.label}
templates/CRM/Case/Form/Search/Common.tpl,{$form.case_subject.html}
templates/CRM/Case/Form/Search/Common.tpl,{$form.case_type_id.label}
templates/CRM/Case/Form/Search/Common.tpl,{$form.case_type_id.html}
templates/CRM/Case/Form/Search/Common.tpl,{$form.case_status_id.label}
templates/CRM/Case/Form/Search/Common.tpl,{$form.case_status_id.html}
templates/CRM/Case/Form/Search/Common.tpl,{$form.case_owner.html}
templates/CRM/Case/Form/Search/Common.tpl,{$form.case_deleted.html}
templates/CRM/Case/Form/Search/Common.tpl,{$form.case_deleted.label}
templates/CRM/Case/Form/Search/Common.tpl,{$form.case_tags.label}
templates/CRM/Case/Form/Search/Common.tpl,{$form.case_tags.html}
templates/CRM/Case/Form/Search.tpl,{$form.sort_name.label}
templates/CRM/Case/Form/Search.tpl,{$form.sort_name.html|crmAddClass:'twenty'}
templates/CRM/Case/Form/Selector.tpl,{$form.toggleSelect.html}
templates/CRM/Case/Form/Selector.tpl,{$sort->_response.$key.link}
templates/CRM/Case/Form/Selector.tpl,{$header.name}
templates/CRM/Case/Form/Selector.tpl,{$list}
templates/CRM/Case/Form/Selector.tpl,{$row.case_id}
templates/CRM/Case/Form/Selector.tpl,{$row.case_status_id}
templates/CRM/Case/Form/Selector.tpl,{$row.case_type_id}
templates/CRM/Case/Form/Selector.tpl,{$form.$cbName.html}
templates/CRM/Case/Form/Selector.tpl,{$row.case_id}
templates/CRM/Case/Form/Selector.tpl,{$row.case_id}
templates/CRM/Case/Form/Selector.tpl,{$row.sort_name}
templates/CRM/Case/Form/Selector.tpl,{$row.phone}
templates/CRM/Case/Form/Selector.tpl,{$row.case_id}
templates/CRM/Case/Form/Selector.tpl,{$row.case_subject}
templates/CRM/Case/Form/Selector.tpl,{$row.class}
templates/CRM/Case/Form/Selector.tpl,{$row.case_status}
templates/CRM/Case/Form/Selector.tpl,{$row.case_status}
templates/CRM/Case/Form/Selector.tpl,{$row.case_type}
templates/CRM/Case/Form/Selector.tpl,{$row.case_role}
templates/CRM/Case/Form/Selector.tpl,{$row.casemanager}
templates/CRM/Case/Form/Selector.tpl,{$row.case_recent_activity_type}
templates/CRM/Case/Form/Selector.tpl,{$row.case_recent_activity_date|crmDate}
templates/CRM/Case/Form/Selector.tpl,{$row.case_scheduled_activity_type}
templates/CRM/Case/Form/Selector.tpl,{$row.case_scheduled_activity_date|crmDate}
templates/CRM/Case/Form/Selector.tpl,{$row.action|replace:'xx':$row.case_id}
templates/CRM/Case/Form/Selector.tpl,{$row.moreActions|replace:'xx':$row.case_id}
templates/CRM/Case/Form/Task/Print.tpl,{$row.sort_name}
templates/CRM/Case/Form/Task/Print.tpl,{$row.case_id}
templates/CRM/Case/Form/Task/Print.tpl,{$row.case_status_id}
templates/CRM/Case/Form/Task/Print.tpl,{$row.case_type_id}
templates/CRM/Case/Form/Task/Print.tpl,{$row.case_role}
templates/CRM/Case/Form/Task/Print.tpl,{$row.case_recent_activity_type}
templates/CRM/Case/Form/Task/Print.tpl,{$row.case_recent_activity_date|crmDate}
templates/CRM/Case/Form/Task/Print.tpl,{$row.case_scheduled_activity_type}
templates/CRM/Case/Form/Task/Print.tpl,{$row.case_scheduled_activity_date|crmDate}
templates/CRM/Case/Form/Task/SearchTaskHookSample.tpl,{$row.display_name}
templates/CRM/Case/Form/Task/SearchTaskHookSample.tpl,{$row.start_date}
templates/CRM/Case/Form/Task/SearchTaskHookSample.tpl,{$row.status}
templates/CRM/Case/Form/Task.tpl,{$row.displayName}
templates/CRM/Case/Form/ViewRelatedCases.tpl,{$row.client_name}
templates/CRM/Case/Form/ViewRelatedCases.tpl,{$row.case_type}
templates/CRM/Case/Form/ViewRelatedCases.tpl,{$row.links}
templates/CRM/Case/Page/CustomDataView.tpl,{$cd_edit.name}
templates/CRM/Case/Page/CustomDataView.tpl,{$cd_edit.title}
templates/CRM/Case/Page/CustomDataView.tpl,{$element.field_title}
templates/CRM/Case/Page/CustomDataView.tpl,{$val}
templates/CRM/Case/Page/CustomDataView.tpl,{$element.field_title}
templates/CRM/Case/Page/CustomDataView.tpl,{$element.field_value}
templates/CRM/Case/Page/DashBoard.tpl,{$newCaseURL}
templates/CRM/Case/Page/DashBoard.tpl,{$header.url}
templates/CRM/Case/Page/DashBoard.tpl,{$header.status}
templates/CRM/Case/Page/DashBoard.tpl,{$caseType}
templates/CRM/Case/Page/DashBoard.tpl,{$row.$caseStatus.url}
templates/CRM/Case/Page/DashBoard.tpl,{$row.$caseStatus.count}
templates/CRM/Case/Page/DashboardSelector.tpl,{$config->resourceBase}
templates/CRM/Case/Page/DashboardSelector.tpl,{$list}
templates/CRM/Case/Page/DashboardSelector.tpl,{$list}
templates/CRM/Case/Page/Tab.tpl,{$newCaseURL}
templates/CRM/Case/XMLProcessor/Report.tpl,{$case.clientName|escape}
templates/CRM/Case/XMLProcessor/Report.tpl,{$case.caseType}
templates/CRM/Case/XMLProcessor/Report.tpl,{$case.subject|escape}
templates/CRM/Case/XMLProcessor/Report.tpl,{$case.status}
templates/CRM/Case/XMLProcessor/Report.tpl,{$case.start_date}
templates/CRM/Case/XMLProcessor/Report.tpl,{$case.end_date}
templates/CRM/Case/XMLProcessor/Report.tpl,{$activitySet.label}
templates/CRM/Case/XMLProcessor/Report.tpl,{$includeActivities}
templates/CRM/Case/XMLProcessor/Report.tpl,{$isRedact}
templates/CRM/Case/XMLProcessor/Report.tpl,{$activity.editURL}
templates/CRM/Case/XMLProcessor/Report.tpl,{$field.label|escape}
templates/CRM/Case/XMLProcessor/Report.tpl,{$field.category|escape}
templates/CRM/Case/XMLProcessor/Report.tpl,{$field.value|escape}
templates/CRM/Case/XMLProcessor/Report.tpl,{$field.type}
templates/CRM/Case/XMLProcessor/Report.tpl,{$customGroupName|escape}
templates/CRM/Case/XMLProcessor/Report.tpl,{$field.label|escape}
templates/CRM/Case/XMLProcessor/Report.tpl,{$field.value|escape}
templates/CRM/Case/XMLProcessor/Report.tpl,{$field.type}
templates/CRM/common/additionalBlocks.tpl,{$blockName}
templates/CRM/common/additionalBlocks.tpl,{$className}
templates/CRM/common/additionalBlocks.tpl,{$fieldName}
templates/CRM/common/additionalBlocks.tpl,{$blockId}
templates/CRM/common/additionalBlocks.tpl,{$qfKey}
templates/CRM/common/chart.tpl,{$config->resourceBase}
templates/CRM/common/chart.tpl,{$config->resourceBase}
templates/CRM/common/chart.tpl,{$config->resourceBase}
templates/CRM/common/chart.tpl,{$config->resourceBase}
templates/CRM/common/checkUsernameAvailable.tpl,{$checkUserSig.ts}
templates/CRM/common/checkUsernameAvailable.tpl,{$checkUserSig.signature}
templates/CRM/common/cidzero.tpl,{$form.select_contact_id.html}
templates/CRM/common/CMSPrint.tpl,"{$config->lcMessages|truncate:2:"""":true}"
templates/CRM/common/CMSPrint.tpl,"{$config->lcMessages|truncate:2:"""":true}"
templates/CRM/common/CMSPrint.tpl,{$crumb}
templates/CRM/common/CMSPrint.tpl,{$printerFriendly}
templates/CRM/common/CMSPrint.tpl,{$pageTitle}
templates/CRM/common/CMSUser.tpl,{$form.cms_create_account.html}
templates/CRM/common/CMSUser.tpl,{$form.cms_create_account.label}
templates/CRM/common/CMSUser.tpl,{$form.cms_name.label}
templates/CRM/common/CMSUser.tpl,{$form.cms_name.html}
templates/CRM/common/CMSUser.tpl,{$form.cms_pass.label}
templates/CRM/common/CMSUser.tpl,{$form.cms_pass.html}
templates/CRM/common/CMSUser.tpl,{$form.cms_confirm_pass.label}
templates/CRM/common/CMSUser.tpl,{$form.cms_confirm_pass.html}
templates/CRM/common/CMSUser.tpl,{$cId}
templates/CRM/common/CMSUser.tpl,{$config->userFrameworkBaseURL}
templates/CRM/common/contactFooter.tpl,{$external_identifier}
templates/CRM/common/contactFooter.tpl,{$contactId}
templates/CRM/common/contactFooter.tpl,{$lastModified.name}
templates/CRM/common/contactFooter.tpl,{$lastModified.date|crmDate}
templates/CRM/common/contactFooter.tpl,{$created_date|crmDate}
templates/CRM/common/customData.tpl,{$groupID}
templates/CRM/common/customData.tpl,{$entityID}
templates/CRM/common/customData.tpl,{$qfKey}
templates/CRM/common/customData.tpl,{$action}
templates/CRM/common/customDataBlock.tpl,{$customDataType}
templates/CRM/common/customDataBlock.tpl,{$customDataSubType}
templates/CRM/common/customDataBlock.tpl,{$cid}
templates/CRM/common/customDataBlock.tpl,{$customDataType}
templates/CRM/common/customDataBlock.tpl,{$cid}
templates/CRM/common/dashboard.tpl,{$contactDashlets|@json_encode}
templates/CRM/common/debug.tpl,{$tplFile}
templates/CRM/common/debug.tpl,{$session->reset($smarty.get.sessionReset)}
templates/CRM/common/debug.tpl,{$session->debug($smarty.get.sessionDebug)}
templates/CRM/common/debug.tpl,{$config->cleanup($smarty.get.directoryCleanup)}
templates/CRM/common/debug.tpl,{$config->clearDBCache()}
templates/CRM/common/debug.tpl,{$config->reset()}
templates/CRM/common/deferredFinancialType.tpl,{$deferredFinancialType|@json_encode}
templates/CRM/common/displaySearchCriteria.tpl,{$item|escape}
templates/CRM/common/displaySearchCriteria.tpl,{$item|escape}
templates/CRM/common/displaySearchCriteria.tpl,{$operator|escape}
templates/CRM/common/enableDisableApi.tpl,{$(this).dialog('close');}
templates/CRM/common/fatal.tpl,{$pageTitle|escape}
templates/CRM/common/fatal.tpl,{$config->resourceBase}
templates/CRM/common/fatal.tpl,{$config->resourceBase}
templates/CRM/common/fatal.tpl,{$config->resourceBase}
templates/CRM/common/fatal.tpl,{$config->resourceBase}
templates/CRM/common/fatal.tpl,"{$config->lcMessages|truncate:2:"""":true}"
templates/CRM/common/fatal.tpl,"{$config->lcMessages|truncate:2:"""":true}"
templates/CRM/common/fatal.tpl,"{$config->lcMessages|truncate:2:"""":true}"
templates/CRM/common/fatal.tpl,"{$config->lcMessages|truncate:2:"""":true}"
templates/CRM/common/fatal.tpl,{$config->resourceBase}
templates/CRM/common/fatal.tpl,{$config->resourceBase}
templates/CRM/common/fatal.tpl,{$config->resourceBase}
templates/CRM/common/fatal.tpl,{$message|escape}
templates/CRM/common/fatal.tpl,{$error.message|escape}
templates/CRM/common/fatal.tpl,{$code|purify}
templates/CRM/common/fatal.tpl,{$mysql_code|purify}
templates/CRM/common/fatal.tpl,{$errorDetails|purify}
templates/CRM/common/fatal.tpl,{$config->userFrameworkBaseURL}
templates/CRM/common/footer.tpl,{$version}
templates/CRM/common/footer.tpl,{$version}
templates/CRM/common/footer.tpl,{$footer_status_message}
templates/CRM/common/formButtons.tpl,"{$icon|truncate:3:"""":true}"
templates/CRM/common/formButtons.tpl,{$icon}
templates/CRM/common/formButtons.tpl,{$icon}
templates/CRM/common/formButtons.tpl,{$key|crmBtnType}
templates/CRM/common/formButtons.tpl,{$key}
templates/CRM/common/formButtons.tpl,{$buttonClass}
templates/CRM/common/formButtons.tpl,{$buttonStyle}
templates/CRM/common/formButtons.tpl,{$iconDisp}
templates/CRM/common/formButtons.tpl,{$html}
templates/CRM/common/highLightImport.tpl,{$highlightedRelFields|@json_encode}
templates/CRM/common/importProgress.tpl,{$statusUrl|@json_encode}
templates/CRM/common/info.tpl,{$infoType}
templates/CRM/common/info.tpl,{$infoOptions}
templates/CRM/common/info.tpl,{$infoTitle}
templates/CRM/common/info.tpl,{$infoMessage}
templates/CRM/common/jcalendar.tpl,{$form.field.$elementIndex.$elementName.html}
templates/CRM/common/jcalendar.tpl,{$form.$elementName.$elementIndex.html}
templates/CRM/common/jcalendar.tpl,{$form.$blockSection.$blockId.$elementName.html}
templates/CRM/common/jcalendar.tpl,{$form.$blockSection.$blockId.$tElement.label}
templates/CRM/common/jcalendar.tpl,{$form.$blockSection.$blockId.$tElement.html|crmAddClass:six}
templates/CRM/common/jcalendar.tpl,{$form.$elementName.html}
templates/CRM/common/jcalendar.tpl,{$displayDate}
templates/CRM/common/jcalendar.tpl,{$displayDate}
templates/CRM/common/jcalendar.tpl,{$form.field.$elementIndex.$tElement.label}
templates/CRM/common/jcalendar.tpl,{$form.field.$elementIndex.$tElement.html|crmAddClass:six}
templates/CRM/common/jcalendar.tpl,{$form.$timeElement.label}
templates/CRM/common/jcalendar.tpl,{$form.$timeElement.html|crmAddClass:six}
templates/CRM/common/jcalendar.tpl,{$displayDate}
templates/CRM/common/jcalendar.tpl,{$timeElement}
templates/CRM/common/jcalendar.tpl,{$elementId}
templates/CRM/common/joomla.tpl,"{$config->lcMessages|truncate:2:"""":true}"
templates/CRM/common/joomla.tpl,"{$config->lcMessages|truncate:2:"""":true}"
templates/CRM/common/joomla.tpl,{$config->resourceBase}
templates/CRM/common/joomla.tpl,{$sidebarLeft}
templates/CRM/common/joomla.tpl,{$crumb.url}
templates/CRM/common/joomla.tpl,{$crumb.title}
templates/CRM/common/joomla.tpl,{$printerFriendly}
templates/CRM/common/joomla.tpl,{$pageTitle}
templates/CRM/common/jsortable.tpl,{$sourceUrl}
templates/CRM/common/jsortable.tpl,{$defaultCurrencySymbol}
templates/CRM/common/jsortable.tpl,{$defaultCurrencySymbol}
templates/CRM/common/l10n.js.tpl,"{$smarty.now|date_format:'%d %b %Y %H:%M:%S'}"
templates/CRM/common/l10n.js.tpl,{$config->userFramework|@json_encode}
templates/CRM/common/l10n.js.tpl,{$config->userFrameworkResourceURL|@json_encode}
templates/CRM/common/l10n.js.tpl,{$config->lcMessages|@json_encode}
templates/CRM/common/l10n.js.tpl,{$locale|@json_encode}
templates/CRM/common/l10n.js.tpl,{$cid|@json_encode}
templates/CRM/common/l10n.js.tpl,{$config->dateInputFormat|@json_encode}
templates/CRM/common/l10n.js.tpl,{$ajaxPopupsEnabled|@json_encode}
templates/CRM/common/l10n.js.tpl,{$allowAlertAutodismissal|@json_encode}
templates/CRM/common/l10n.js.tpl,{$resourceCacheCode|@json_encode}
templates/CRM/common/l10n.js.tpl,{$entityRef|@json_encode}
templates/CRM/common/l10n.js.tpl,{$moneyFormat}
templates/CRM/common/l10n.js.tpl,{$contactSearch}
templates/CRM/common/l10n.js.tpl,{$otherSearch}
templates/CRM/common/l10n.js.tpl,{$config->monetaryThousandSeparator|json_encode}
templates/CRM/common/localNav.tpl,{$task.class}
templates/CRM/common/localNav.tpl,{$task.url}
templates/CRM/common/localNav.tpl,{$task.class}
templates/CRM/common/localNav.tpl,{$task.title}
templates/CRM/common/logButton.tpl,{$snippet.css_class}
templates/CRM/common/logButton.tpl,{$snippet.css_class}
templates/CRM/common/logButton.tpl,{$snippet.css_class}
templates/CRM/common/logButton.tpl,{$snippet.contact_id}
templates/CRM/common/logButton.tpl,{$snippet.table_name}
templates/CRM/common/logButton.tpl,{$snippet.instance_id}
templates/CRM/common/navigation.js.tpl,{$optionKey}
templates/CRM/common/navigation.js.tpl,{$optionLabel}
templates/CRM/common/navigation.js.tpl,{$navigation}
templates/CRM/common/navigation.js.tpl,"{$smarty.now|date_format:'%d %b %Y %H:%M:%S'}"
templates/CRM/common/navigation.js.tpl,{$menuMarkup|@json_encode}
templates/CRM/common/pager.tpl,{$pager->_response.titleTop}
templates/CRM/common/pager.tpl,{$pager->_response.titleBottom}
templates/CRM/common/pager.tpl,{$pager->_response.first}
templates/CRM/common/pager.tpl,{$pager->_response.back}
templates/CRM/common/pager.tpl,{$pager->_response.next}
templates/CRM/common/pager.tpl,{$pager->_response.last}
templates/CRM/common/pager.tpl,{$pager->_response.status}
templates/CRM/common/pager.tpl,{$form.formClass}
templates/CRM/common/pager.tpl,{$form.formClass}
templates/CRM/common/pager.tpl,{$pager->_perPage}
templates/CRM/common/pager.tpl,{$form.formClass}
templates/CRM/common/pager.tpl,{$pager->_response.numPages}
templates/CRM/common/pager.tpl,{$pager->_response.currentPage}
templates/CRM/common/pager.tpl,{$pager->_perPage}
templates/CRM/common/pager.tpl,{$pager->_response.currentLocation|json_encode}
templates/CRM/common/pagerAToZ.tpl,{$letter.class}
templates/CRM/common/pagerAToZ.tpl,{$letter.item}
templates/CRM/common/paymentBlock.tpl,{$event.is_multiple_registrations|@json_encode}
templates/CRM/common/paymentBlock.tpl,{$contributionPageID}
templates/CRM/common/paymentBlock.tpl,{$custom_pre_id}
templates/CRM/common/paymentBlock.tpl,{$urlPathVar}
templates/CRM/common/paymentBlock.tpl,{$billing_profile_id}
templates/CRM/common/paymentBlock.tpl,{$isBackOffice}
templates/CRM/common/print.tpl,"{$config->lcMessages|truncate:2:"""":true}"
templates/CRM/common/print.tpl,"{$config->lcMessages|truncate:2:"""":true}"
templates/CRM/common/print.tpl,{$pageTitle|strip_tags}
templates/CRM/common/print.tpl,{$config->resourceBase}
templates/CRM/common/print.tpl,"{$config->lcMessages|truncate:2:"""":true}"
templates/CRM/common/print.tpl,"{$config->lcMessages|truncate:2:"""":true}"
templates/CRM/common/ReCAPTCHA.tpl,{$recaptchaOptions}
templates/CRM/common/ReCAPTCHA.tpl,{$recaptchaHTML}
templates/CRM/common/recentlyViewed.tpl,{$item.url}
templates/CRM/common/recentlyViewed.tpl,{$item.icon}
templates/CRM/common/recentlyViewed.tpl,{$item.url}
templates/CRM/common/recentlyViewed.tpl,{$item.title}
templates/CRM/common/redirectJS.tpl,{$redirectURL}
templates/CRM/common/redirectJS.tpl,{$title}
templates/CRM/common/redirectJS.tpl,{$title}
templates/CRM/common/redirectJS.tpl,{$message}
templates/CRM/common/searchResultTasks.tpl,{$savedSearch.name}
templates/CRM/common/searchResultTasks.tpl,{$selectorLabel}
templates/CRM/common/searchResultTasks.tpl,{$participantCount}
templates/CRM/common/searchResultTasks.tpl,{$form.radio_ts.ts_all.html}
templates/CRM/common/searchResultTasks.tpl,{$ts_all_id}
templates/CRM/common/searchResultTasks.tpl,{$form.radio_ts.ts_sel.html}
templates/CRM/common/searchResultTasks.tpl,{$ts_sel_id}
templates/CRM/common/searchResultTasks.tpl,{$form.$printButtonName.html}
templates/CRM/common/searchResultTasks.tpl,{$form._qf_Search_next_print.html}
templates/CRM/common/searchResultTasks.tpl,{$form.task.html}
templates/CRM/common/searchResultTasks.tpl,{$form.$actionButtonName.html}
templates/CRM/common/searchResultTasks.tpl,{$form._qf_Search_next_action.html}
templates/CRM/common/SectionNav.tpl,{$stepClass}
templates/CRM/common/SectionNav.tpl,{$step.link}
templates/CRM/common/SectionNav.tpl,{$step.title}
templates/CRM/common/showHide.tpl,{$showBlocks}
templates/CRM/common/showHide.tpl,{$hideBlocks}
templates/CRM/common/showHideByFieldValue.tpl,{$trigger_field_id}
templates/CRM/common/showHideByFieldValue.tpl,{$trigger_value}
templates/CRM/common/showHideByFieldValue.tpl,{$target_element_id}
templates/CRM/common/showHideByFieldValue.tpl,{$target_element_type}
templates/CRM/common/showHideByFieldValue.tpl,{$field_type}
templates/CRM/common/showHideByFieldValue.tpl,{$invert}
templates/CRM/common/SocialNetwork.tpl,{$pageURL}
templates/CRM/common/SocialNetwork.tpl,{$title}
templates/CRM/common/SocialNetwork.tpl,{$url|escape:'url'}
templates/CRM/common/SocialNetwork.tpl,{$title}
templates/CRM/common/SocialNetwork.tpl,{$config->userFrameworkResourceURL|replace:'https://':'http://'}
templates/CRM/common/SocialNetwork.tpl,{$url}
templates/CRM/common/SocialNetwork.tpl,{$config->userFrameworkResourceURL|replace:'https://':'http://'}
templates/CRM/common/SocialNetwork.tpl,{$title}
templates/CRM/common/SocialNetwork.tpl,{$url|escape:'url'}
templates/CRM/common/SocialNetwork.tpl,{$url}
templates/CRM/common/SocialNetwork.tpl,{$url|escape:'url'}
templates/CRM/common/SocialNetwork.tpl,{$url}
templates/CRM/common/SocialNetwork.tpl,{$pageURL}
templates/CRM/common/SocialNetwork.tpl,{$pageURL}
templates/CRM/common/success.tpl,{$pageTitle}
templates/CRM/common/success.tpl,{$preUpgradeMessage}
templates/CRM/common/success.tpl,{$cancelURL}
templates/CRM/common/success.tpl,{$config->resourceBase}
templates/CRM/common/success.tpl,{$message}
templates/CRM/common/success.tpl,{$afterUpgradeMessage}
templates/CRM/common/TabHeader.tpl,{$tabName}
templates/CRM/common/TabHeader.tpl,{$tabValue.class}
templates/CRM/common/TabHeader.tpl,{$tabValue.extra}
templates/CRM/common/TabHeader.tpl,{$tabName}
templates/CRM/common/TabHeader.tpl,{$tabValue.link}
templates/CRM/common/TabHeader.tpl,{$tabValue.title|escape}
templates/CRM/common/TabHeader.tpl,{$tabValue.icon}
templates/CRM/common/TabHeader.tpl,{$tabValue.title}
templates/CRM/common/TabHeader.tpl,{$tabValue.count}
templates/CRM/common/TabHeader.tpl,{$tabValue.title}
templates/CRM/common/TabHeader.tpl,{$tabName}
templates/CRM/common/TabSelected.tpl,{$defaultTab}
templates/CRM/common/TabSelected.tpl,{$tabContainer}
templates/CRM/common/TabSelected.tpl,{$selectedChild}
templates/CRM/common/Tagset.tpl,{$form.$elemName.$parID.label}
templates/CRM/common/Tagset.tpl,{$tagsetType}
templates/CRM/common/Tagset.tpl,{$tagsetType}
templates/CRM/common/Tagset.tpl,{$tagset.parentID}
templates/CRM/common/Tagset.tpl,{$form.$elemName.$parID.html}
templates/CRM/common/Tagset.tpl,{$tagsetType}
templates/CRM/common/Tagset.tpl,{$tagsetType}
templates/CRM/common/Tagset.tpl,{$tagset.parentID}
templates/CRM/common/Tagset.tpl,{$form.$elemName.$parID.label}
templates/CRM/common/Tagset.tpl,{$form.$elemName.$parID.html}
templates/CRM/common/Tagset.tpl,{$tagsetType}
templates/CRM/common/tasks.tpl,{$form.task.html}
templates/CRM/common/tasks.tpl,{$form.$actionButtonName.html}
templates/CRM/common/TrackingFields.tpl,{$trackingFieldName}
templates/CRM/common/upgradeCleanup.tpl,{$preMessage}
templates/CRM/common/upgradeCleanup.tpl,{$header}
templates/CRM/common/upgradeCleanup.tpl,{$cell}
templates/CRM/common/upgradeCleanup.tpl,{$postMessage}
templates/CRM/common/WizardHeader.tpl,{$wizard.style.barClass}
templates/CRM/common/WizardHeader.tpl,{$stepClass}
templates/CRM/common/WizardHeader.tpl,{$stepPrefix}
templates/CRM/common/WizardHeader.tpl,{$wizard.steps[step].link}
templates/CRM/common/WizardHeader.tpl,{$title}
templates/CRM/common/WizardHeader.tpl,{$wizard.currentStepTitle}
templates/CRM/Contact/Form/Contact.tpl,{$form.contact_source.label}
templates/CRM/Contact/Form/Contact.tpl,{$form.contact_source.html|crmAddClass:twenty}
templates/CRM/Contact/Form/Contact.tpl,{$form.external_identifier.label}
templates/CRM/Contact/Form/Contact.tpl,{$form.external_identifier.html}
templates/CRM/Contact/Form/Contact.tpl,{$contactId}
templates/CRM/Contact/Form/Contact.tpl,{$form.image_URL.label}
templates/CRM/Contact/Form/Contact.tpl,{$form.image_URL.html|crmAddClass:twenty}
templates/CRM/Contact/Form/Contact.tpl,{$form._qf_Contact_refresh_dedupe.html}
templates/CRM/Contact/Form/Contact.tpl,{$form._qf_Contact_upload_duplicate.html}
templates/CRM/Contact/Form/Contact.tpl,{$form.formClass}
templates/CRM/Contact/Form/Contact.tpl,{$action|intval}
templates/CRM/Contact/Form/Contact.tpl,{$contactId|intval}
templates/CRM/Contact/Form/Contact.tpl,{$contactType}
templates/CRM/Contact/Form/Contact.tpl,{$paramSubType}
templates/CRM/Contact/Form/Contact.tpl,{$contactType}
templates/CRM/Contact/Form/Contact.tpl,{$groupValue}
templates/CRM/Contact/Form/Contact.tpl,{$groupCount}
templates/CRM/Contact/Form/Contact.tpl,{$oldSubtypes}
templates/CRM/Contact/Form/Contact.tpl,{$contactType|@json_encode}
templates/CRM/Contact/Form/CustomData.tpl,{$form.buttons.html}
templates/CRM/Contact/Form/CustomData.tpl,{$form.buttons.html}
templates/CRM/Contact/Form/CustomData.tpl,{$customValueCount|@json_encode}
templates/CRM/Contact/Form/CustomData.tpl,{$groupID|@json_encode}
templates/CRM/Contact/Form/CustomData.tpl,{$contact_type|@json_encode}
templates/CRM/Contact/Form/CustomData.tpl,{$contact_subtype|@json_encode}
templates/CRM/Contact/Form/DedupeFind.tpl,{$form.group_id.label}
templates/CRM/Contact/Form/DedupeFind.tpl,{$form.group_id.html}
templates/CRM/Contact/Form/DedupeFind.tpl,{$form.limit.label}
templates/CRM/Contact/Form/DedupeFind.tpl,{$form.limit.html}
templates/CRM/Contact/Form/DedupeRules.tpl,{$form.title.label}
templates/CRM/Contact/Form/DedupeRules.tpl,{$form.title.html}
templates/CRM/Contact/Form/DedupeRules.tpl,{$form.used.label}
templates/CRM/Contact/Form/DedupeRules.tpl,{$form.used.html}
templates/CRM/Contact/Form/DedupeRules.tpl,{$form.is_reserved.label}
templates/CRM/Contact/Form/DedupeRules.tpl,{$form.is_reserved.html}
templates/CRM/Contact/Form/DedupeRules.tpl,{$smarty.section.count.index}
templates/CRM/Contact/Form/DedupeRules.tpl,{$smarty.section.count.index}
templates/CRM/Contact/Form/DedupeRules.tpl,{$smarty.section.count.index}
templates/CRM/Contact/Form/DedupeRules.tpl,{$form.$where.html}
templates/CRM/Contact/Form/DedupeRules.tpl,{$form.$length.html}
templates/CRM/Contact/Form/DedupeRules.tpl,{$form.$weight.html}
templates/CRM/Contact/Form/DedupeRules.tpl,{$form.threshold.label}
templates/CRM/Contact/Form/DedupeRules.tpl,{$form.threshold.html}
templates/CRM/Contact/Form/Domain.tpl,{$form.name.label}
templates/CRM/Contact/Form/Domain.tpl,{$form.name.html}
templates/CRM/Contact/Form/Domain.tpl,{$form.description.label}
templates/CRM/Contact/Form/Domain.tpl,{$form.description.html}
templates/CRM/Contact/Form/Edit/Address/address_name.tpl,{$form.address.$blockId.name.label}
templates/CRM/Contact/Form/Edit/Address/address_name.tpl,{$form.address.$blockId.name.html}
templates/CRM/Contact/Form/Edit/Address/city_postal_code.tpl,{$form.address.$blockId.city.label}
templates/CRM/Contact/Form/Edit/Address/city_postal_code.tpl,{$form.address.$blockId.city.html}
templates/CRM/Contact/Form/Edit/Address/city_postal_code.tpl,{$form.address.$blockId.postal_code.label}
templates/CRM/Contact/Form/Edit/Address/city_postal_code.tpl,{$form.address.$blockId.postal_code.html}
templates/CRM/Contact/Form/Edit/Address/city_postal_code.tpl,{$form.address.$blockId.postal_code_suffix.label}
templates/CRM/Contact/Form/Edit/Address/city_postal_code.tpl,{$form.address.$blockId.postal_code_suffix.html}
templates/CRM/Contact/Form/Edit/Address/country_state_province.tpl,{$form.address.$blockId.country_id.label}
templates/CRM/Contact/Form/Edit/Address/country_state_province.tpl,{$form.address.$blockId.country_id.html}
templates/CRM/Contact/Form/Edit/Address/country_state_province.tpl,{$form.address.$blockId.state_province_id.label}
templates/CRM/Contact/Form/Edit/Address/country_state_province.tpl,{$form.address.$blockId.state_province_id.html}
templates/CRM/Contact/Form/Edit/Address/county.tpl,{$form.address.$blockId.county_id.label}
templates/CRM/Contact/Form/Edit/Address/county.tpl,{$form.address.$blockId.county_id.html}
templates/CRM/Contact/Form/Edit/Address/CustomData.tpl,{$cd_edit.name}
templates/CRM/Contact/Form/Edit/Address/CustomData.tpl,{$group_id}
templates/CRM/Contact/Form/Edit/Address/CustomData.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/Address/CustomData.tpl,{$cd_edit.name}
templates/CRM/Contact/Form/Edit/Address/CustomData.tpl,{$group_id}
templates/CRM/Contact/Form/Edit/Address/CustomData.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/Address/CustomData.tpl,{$cd_edit.title}
templates/CRM/Contact/Form/Edit/Address/CustomData.tpl,{$group_id}
templates/CRM/Contact/Form/Edit/Address/CustomData.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/Address/geo_code.tpl,{$form.address.$blockId.geo_code_1.label}
templates/CRM/Contact/Form/Edit/Address/geo_code.tpl,{$form.address.$blockId.geo_code_2.label}
templates/CRM/Contact/Form/Edit/Address/geo_code.tpl,{$form.address.$blockId.geo_code_1.html}
templates/CRM/Contact/Form/Edit/Address/geo_code.tpl,{$form.address.$blockId.geo_code_2.html}
templates/CRM/Contact/Form/Edit/Address/geo_code.tpl,{$form.address.$blockId.manual_geo_code.html}
templates/CRM/Contact/Form/Edit/Address/geo_code.tpl,{$form.address.$blockId.manual_geo_code.label}
templates/CRM/Contact/Form/Edit/Address/street_address.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/Address/street_address.tpl,{$form.address.$blockId.street_address.label}
templates/CRM/Contact/Form/Edit/Address/street_address.tpl,{$form.address.$blockId.street_address.html}
templates/CRM/Contact/Form/Edit/Address/street_address.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/Address/street_address.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/Address/street_address.tpl,{$form.address.$blockId.street_number.label}
templates/CRM/Contact/Form/Edit/Address/street_address.tpl,{$form.address.$blockId.street_number.html}
templates/CRM/Contact/Form/Edit/Address/street_address.tpl,{$form.address.$blockId.street_name.label}
templates/CRM/Contact/Form/Edit/Address/street_address.tpl,{$form.address.$blockId.street_name.html}
templates/CRM/Contact/Form/Edit/Address/street_address.tpl,{$form.address.$blockId.street_unit.label}
templates/CRM/Contact/Form/Edit/Address/street_address.tpl,{$form.address.$blockId.street_unit.html}
templates/CRM/Contact/Form/Edit/Address/street_address.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/Address/street_address.tpl,{$allAddressFieldValues}
templates/CRM/Contact/Form/Edit/Address/supplemental_address_1.tpl,{$form.address.$blockId.supplemental_address_1.label}
templates/CRM/Contact/Form/Edit/Address/supplemental_address_1.tpl,{$form.address.$blockId.supplemental_address_1.html}
templates/CRM/Contact/Form/Edit/Address/supplemental_address_2.tpl,{$form.address.$blockId.supplemental_address_2.label}
templates/CRM/Contact/Form/Edit/Address/supplemental_address_2.tpl,{$form.address.$blockId.supplemental_address_2.html}
templates/CRM/Contact/Form/Edit/Address/supplemental_address_3.tpl,{$form.address.$blockId.supplemental_address_3.label}
templates/CRM/Contact/Form/Edit/Address/supplemental_address_3.tpl,{$form.address.$blockId.supplemental_address_3.html}
templates/CRM/Contact/Form/Edit/Address.tpl,{$title}
templates/CRM/Contact/Form/Edit/Address.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/Address.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/Address.tpl,{$form.address.$blockId.location_type_id.label}
templates/CRM/Contact/Form/Edit/Address.tpl,{$form.address.$blockId.location_type_id.html}
templates/CRM/Contact/Form/Edit/Address.tpl,{$form.address.$blockId.is_primary.html}
templates/CRM/Contact/Form/Edit/Address.tpl,{$form.address.$blockId.is_billing.html}
templates/CRM/Contact/Form/Edit/Address.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/Address.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/Address.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/Address.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/Address.tpl,{$className}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.js.tpl,{$form.formClass}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$title}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.communication_style_id.label}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.communication_style_id.html}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.email_greeting_id.label}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.postal_greeting_id.label}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.addressee_id.label}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.email_greeting_id.html|crmAddClass:big}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$email_greeting_display}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.postal_greeting_id.html|crmAddClass:big}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$postal_greeting_display}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.addressee_id.html|crmAddClass:big}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$addressee_display}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.email_greeting_custom.label}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.postal_greeting_custom.label}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.addressee_custom.label}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.email_greeting_custom.html|crmAddClass:big}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.postal_greeting_custom.html|crmAddClass:big}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.addressee_custom.html|crmAddClass:big}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.$key.label}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.$key.html}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.preferred_language.label}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.preferred_language.html}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.is_opt_out.html}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.is_opt_out.label}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.preferred_mail_format.label}
templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl,{$form.preferred_mail_format.html}
templates/CRM/Contact/Form/Edit/CustomData.tpl,{$cd_edit.name}
templates/CRM/Contact/Form/Edit/CustomData.tpl,{$cd_edit.title}
templates/CRM/Contact/Form/Edit/CustomData.tpl,{$group_id}
templates/CRM/Contact/Form/Edit/CustomData.tpl,{$group_id}
templates/CRM/Contact/Form/Edit/CustomData.tpl,{$cgCount}
templates/CRM/Contact/Form/Edit/Demographics.tpl,{$title}
templates/CRM/Contact/Form/Edit/Demographics.tpl,{$form.gender_id.label}
templates/CRM/Contact/Form/Edit/Demographics.tpl,{$form.gender_id.html}
templates/CRM/Contact/Form/Edit/Demographics.tpl,{$form.birth_date.label}
templates/CRM/Contact/Form/Edit/Demographics.tpl,{$form.birth_date.html}
templates/CRM/Contact/Form/Edit/Demographics.tpl,{$form.is_deceased.html}
templates/CRM/Contact/Form/Edit/Demographics.tpl,{$form.is_deceased.label}
templates/CRM/Contact/Form/Edit/Demographics.tpl,{$form.deceased_date.label}
templates/CRM/Contact/Form/Edit/Demographics.tpl,{$form.deceased_date.html}
templates/CRM/Contact/Form/Edit/Email.tpl,{$className}
templates/CRM/Contact/Form/Edit/Email.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/Email.tpl,{$form.email.$blockId.email.html|crmAddClass:email}
templates/CRM/Contact/Form/Edit/Email.tpl,{$form.email.$blockId.location_type_id.html}
templates/CRM/Contact/Form/Edit/Email.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/Email.tpl,{$form.email.$blockId.signature_html.label}
templates/CRM/Contact/Form/Edit/Email.tpl,{$form.email.$blockId.signature_html.html}
templates/CRM/Contact/Form/Edit/Email.tpl,{$form.email.$blockId.signature_text.label}
templates/CRM/Contact/Form/Edit/Email.tpl,{$form.email.$blockId.signature_text.html}
templates/CRM/Contact/Form/Edit/Email.tpl,{$form.email.$blockId.on_hold.html}
templates/CRM/Contact/Form/Edit/Email.tpl,{$form.email.$blockId.is_bulkmail.html}
templates/CRM/Contact/Form/Edit/Email.tpl,{$form.email.$blockId.is_primary.1.html}
templates/CRM/Contact/Form/Edit/Email.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/Household.tpl,{$form.household_name.label}
templates/CRM/Contact/Form/Edit/Household.tpl,{$form.household_name.html}
templates/CRM/Contact/Form/Edit/Household.tpl,{$form.nick_name.label}
templates/CRM/Contact/Form/Edit/Household.tpl,{$form.nick_name.html}
templates/CRM/Contact/Form/Edit/Household.tpl,{$form.contact_sub_type.label}
templates/CRM/Contact/Form/Edit/Household.tpl,{$form.contact_sub_type.html}
templates/CRM/Contact/Form/Edit/IM.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/IM.tpl,{$form.im.$blockId.name.html|crmAddClass:twenty}
templates/CRM/Contact/Form/Edit/IM.tpl,{$form.im.$blockId.location_type_id.html}
templates/CRM/Contact/Form/Edit/IM.tpl,{$form.im.$blockId.provider_id.html}
templates/CRM/Contact/Form/Edit/IM.tpl,{$form.im.$blockId.is_primary.1.html}
templates/CRM/Contact/Form/Edit/IM.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/IM.tpl,{$className}
templates/CRM/Contact/Form/Edit/Individual.tpl,{$form.prefix_id.label}
templates/CRM/Contact/Form/Edit/Individual.tpl,{$form.prefix_id.html}
templates/CRM/Contact/Form/Edit/Individual.tpl,{$form.formal_title.label}
templates/CRM/Contact/Form/Edit/Individual.tpl,{$form.formal_title.html}
templates/CRM/Contact/Form/Edit/Individual.tpl,{$form.first_name.label}
templates/CRM/Contact/Form/Edit/Individual.tpl,{$form.first_name.html}
templates/CRM/Contact/Form/Edit/Individual.tpl,{$form.middle_name.label}
templates/CRM/Contact/Form/Edit/Individual.tpl,{$form.middle_name.html}
templates/CRM/Contact/Form/Edit/Individual.tpl,{$form.last_name.label}
templates/CRM/Contact/Form/Edit/Individual.tpl,{$form.last_name.html}
templates/CRM/Contact/Form/Edit/Individual.tpl,{$form.suffix_id.label}
templates/CRM/Contact/Form/Edit/Individual.tpl,{$form.suffix_id.html}
templates/CRM/Contact/Form/Edit/Individual.tpl,{$form.employer_id.label}
templates/CRM/Contact/Form/Edit/Individual.tpl,{$form.employer_id.html}
templates/CRM/Contact/Form/Edit/Individual.tpl,{$form.job_title.label}
templates/CRM/Contact/Form/Edit/Individual.tpl,{$form.job_title.html}
templates/CRM/Contact/Form/Edit/Individual.tpl,{$form.nick_name.label}
templates/CRM/Contact/Form/Edit/Individual.tpl,{$form.nick_name.html}
templates/CRM/Contact/Form/Edit/Individual.tpl,{$form.contact_sub_type.label}
templates/CRM/Contact/Form/Edit/Individual.tpl,{$form.contact_sub_type.html}
templates/CRM/Contact/Form/Edit/Lock.tpl,{$contactId}
templates/CRM/Contact/Form/Edit/Notes.tpl,{$title}
templates/CRM/Contact/Form/Edit/Notes.tpl,{$form.subject.label}
templates/CRM/Contact/Form/Edit/Notes.tpl,{$form.subject.html}
templates/CRM/Contact/Form/Edit/Notes.tpl,{$form.note.label}
templates/CRM/Contact/Form/Edit/Notes.tpl,{$form.note.html}
templates/CRM/Contact/Form/Edit/OpenID.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/OpenID.tpl,{$form.openid.$blockId.openid.html|crmAddClass:twenty}
templates/CRM/Contact/Form/Edit/OpenID.tpl,{$form.openid.$blockId.location_type_id.html}
templates/CRM/Contact/Form/Edit/OpenID.tpl,{$form.openid.$blockId.is_primary.1.html}
templates/CRM/Contact/Form/Edit/OpenID.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/OpenID.tpl,{$className}
templates/CRM/Contact/Form/Edit/Organization.tpl,{$form.organization_name.html}
templates/CRM/Contact/Form/Edit/Organization.tpl,{$form.legal_name.label}
templates/CRM/Contact/Form/Edit/Organization.tpl,{$form.legal_name.html}
templates/CRM/Contact/Form/Edit/Organization.tpl,{$form.nick_name.label}
templates/CRM/Contact/Form/Edit/Organization.tpl,{$form.nick_name.html}
templates/CRM/Contact/Form/Edit/Organization.tpl,{$form.sic_code.label}
templates/CRM/Contact/Form/Edit/Organization.tpl,{$form.sic_code.html}
templates/CRM/Contact/Form/Edit/Organization.tpl,{$form.contact_sub_type.label}
templates/CRM/Contact/Form/Edit/Organization.tpl,{$form.contact_sub_type.html}
templates/CRM/Contact/Form/Edit/Phone.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/Phone.tpl,{$form.phone.$blockId.phone.html}
templates/CRM/Contact/Form/Edit/Phone.tpl,{$form.phone.$blockId.phone_ext.html|crmAddClass:four}
templates/CRM/Contact/Form/Edit/Phone.tpl,{$form.phone.$blockId.location_type_id.html}
templates/CRM/Contact/Form/Edit/Phone.tpl,{$form.phone.$blockId.phone_type_id.html}
templates/CRM/Contact/Form/Edit/Phone.tpl,{$form.phone.$blockId.is_primary.1.html}
templates/CRM/Contact/Form/Edit/Phone.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/Phone.tpl,{$className}
templates/CRM/Contact/Form/Edit/TagsAndGroups.tpl,{$title}
templates/CRM/Contact/Form/Edit/TagsAndGroups.tpl,{$form.tag.label}
templates/CRM/Contact/Form/Edit/TagsAndGroups.tpl,{$form.tag.html}
templates/CRM/Contact/Form/Edit/TagsAndGroups.tpl,{$form.group.label}
templates/CRM/Contact/Form/Edit/TagsAndGroups.tpl,{$form.group.html}
templates/CRM/Contact/Form/Edit/TagsAndGroups.tpl,{$form.group.$key.html}
templates/CRM/Contact/Form/Edit/TagsAndGroups.tpl,{$item.description}
templates/CRM/Contact/Form/Edit/Tagtree.tpl,{$level}
templates/CRM/Contact/Form/Edit/Tagtree.tpl,{$id}
templates/CRM/Contact/Form/Edit/Tagtree.tpl,{$id}
templates/CRM/Contact/Form/Edit/Tagtree.tpl,{$id}
templates/CRM/Contact/Form/Edit/Tagtree.tpl,{$id}
templates/CRM/Contact/Form/Edit/Tagtree.tpl,{$id}
templates/CRM/Contact/Form/Edit/Tagtree.tpl,{$allTags.$id.color}
templates/CRM/Contact/Form/Edit/Tagtree.tpl,{$allTags.$id.color|colorContrast}
templates/CRM/Contact/Form/Edit/Tagtree.tpl,{$node.description|escape}
templates/CRM/Contact/Form/Edit/Tagtree.tpl,{$node.name}
templates/CRM/Contact/Form/Edit/Website.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/Website.tpl,{$form.website.$blockId.url.html|crmAddClass:url}
templates/CRM/Contact/Form/Edit/Website.tpl,{$form.website.$blockId.website_type_id.html}
templates/CRM/Contact/Form/Edit/Website.tpl,{$blockId}
templates/CRM/Contact/Form/Edit/Website.tpl,{$className}
templates/CRM/Contact/Form/GroupContact.tpl,{$form.group_id.html}
templates/CRM/Contact/Form/GroupContact.tpl,{$form.buttons.html}
templates/CRM/Contact/Form/Inline/Address.tpl,{$form.oplock_ts.html}
templates/CRM/Contact/Form/Inline/Address.tpl,{$form.address.$blockId.location_type_id.label}
templates/CRM/Contact/Form/Inline/Address.tpl,{$form.address.$blockId.location_type_id.html}
templates/CRM/Contact/Form/Inline/Address.tpl,{$form.address.$blockId.is_primary.html}
templates/CRM/Contact/Form/Inline/Address.tpl,{$form.address.$blockId.is_billing.html}
templates/CRM/Contact/Form/Inline/Address.tpl,{$blockId}
templates/CRM/Contact/Form/Inline/Address.tpl,{$blockId}
templates/CRM/Contact/Form/Inline/Address.tpl,{$blockId}
templates/CRM/Contact/Form/Inline/Address.tpl,{$blockId}
templates/CRM/Contact/Form/Inline/Address.tpl,{$blockId}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$form.oplock_ts.html}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$form.$key.label}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$form.$key.$k.html}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$form.is_opt_out.label}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$form.preferred_language.label}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$form.preferred_language.html}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$form.preferred_mail_format.label}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$form.preferred_mail_format.html}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$form.communication_style_id.label}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$form.communication_style_id.html}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$form.email_greeting_id.label}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$form.email_greeting_id.html|crmAddClass:big}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$email_greeting_display}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$form.email_greeting_custom.html|crmAddClass:big}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$form.postal_greeting_id.label}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$form.postal_greeting_id.html|crmAddClass:big}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$postal_greeting_display}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$form.postal_greeting_custom.html|crmAddClass:big}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$form.addressee_id.label}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$form.addressee_id.html|crmAddClass:big}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$addressee_display}
templates/CRM/Contact/Form/Inline/CommunicationPreferences.tpl,{$form.addressee_custom.html|crmAddClass:big}
templates/CRM/Contact/Form/Inline/ContactInfo.tpl,{$form.oplock_ts.html}
templates/CRM/Contact/Form/Inline/ContactInfo.tpl,{$form.employer_id.label}
templates/CRM/Contact/Form/Inline/ContactInfo.tpl,{$form.employer_id.html|crmAddClass:big}
templates/CRM/Contact/Form/Inline/ContactInfo.tpl,{$form.job_title.label}
templates/CRM/Contact/Form/Inline/ContactInfo.tpl,{$form.job_title.html}
templates/CRM/Contact/Form/Inline/ContactInfo.tpl,{$form.nick_name.label}
templates/CRM/Contact/Form/Inline/ContactInfo.tpl,{$form.nick_name.html}
templates/CRM/Contact/Form/Inline/ContactInfo.tpl,{$form.legal_name.label}
templates/CRM/Contact/Form/Inline/ContactInfo.tpl,{$form.legal_name.html}
templates/CRM/Contact/Form/Inline/ContactInfo.tpl,{$form.sic_code.label}
templates/CRM/Contact/Form/Inline/ContactInfo.tpl,{$form.sic_code.html}
templates/CRM/Contact/Form/Inline/ContactInfo.tpl,{$form.contact_source.label}
templates/CRM/Contact/Form/Inline/ContactInfo.tpl,{$form.contact_source.html}
templates/CRM/Contact/Form/Inline/ContactName.tpl,{$form.oplock_ts.html}
templates/CRM/Contact/Form/Inline/ContactName.tpl,{$form.prefix_id.label}
templates/CRM/Contact/Form/Inline/ContactName.tpl,{$form.prefix_id.html}
templates/CRM/Contact/Form/Inline/ContactName.tpl,{$form.formal_title.label}
templates/CRM/Contact/Form/Inline/ContactName.tpl,{$form.formal_title.html}
templates/CRM/Contact/Form/Inline/ContactName.tpl,{$form.first_name.label}
templates/CRM/Contact/Form/Inline/ContactName.tpl,{$form.first_name.html}
templates/CRM/Contact/Form/Inline/ContactName.tpl,{$form.middle_name.label}
templates/CRM/Contact/Form/Inline/ContactName.tpl,{$form.middle_name.html}
templates/CRM/Contact/Form/Inline/ContactName.tpl,{$form.last_name.label}
templates/CRM/Contact/Form/Inline/ContactName.tpl,{$form.last_name.html}
templates/CRM/Contact/Form/Inline/ContactName.tpl,{$form.suffix_id.label}
templates/CRM/Contact/Form/Inline/ContactName.tpl,{$form.suffix_id.html}
templates/CRM/Contact/Form/Inline/ContactName.tpl,{$form.organization_name.label}
templates/CRM/Contact/Form/Inline/ContactName.tpl,{$form.organization_name.html}
templates/CRM/Contact/Form/Inline/ContactName.tpl,{$form.household_name.label}
templates/CRM/Contact/Form/Inline/ContactName.tpl,{$form.household_name.html}
templates/CRM/Contact/Form/Inline/CustomData.tpl,{$form.oplock_ts.html}
templates/CRM/Contact/Form/Inline/Demographics.tpl,{$form.oplock_ts.html}
templates/CRM/Contact/Form/Inline/Demographics.tpl,{$form.gender_id.label}
templates/CRM/Contact/Form/Inline/Demographics.tpl,{$form.gender_id.html}
templates/CRM/Contact/Form/Inline/Demographics.tpl,{$form.birth_date.label}
templates/CRM/Contact/Form/Inline/Demographics.tpl,{$form.birth_date.html}
templates/CRM/Contact/Form/Inline/Demographics.tpl,{$form.is_deceased.html}
templates/CRM/Contact/Form/Inline/Demographics.tpl,{$form.is_deceased.label}
templates/CRM/Contact/Form/Inline/Demographics.tpl,{$form.deceased_date.label}
templates/CRM/Contact/Form/Inline/Demographics.tpl,{$form.deceased_date.html}
templates/CRM/Contact/Form/Inline/Email.tpl,{$form.oplock_ts.html}
templates/CRM/Contact/Form/Inline/Email.tpl,{$blockId}
templates/CRM/Contact/Form/Inline/Email.tpl,{$form.email.$blockId.email.html|crmAddClass:email}
templates/CRM/Contact/Form/Inline/Email.tpl,{$form.email.$blockId.location_type_id.html}
templates/CRM/Contact/Form/Inline/Email.tpl,{$form.email.$blockId.on_hold.html}
templates/CRM/Contact/Form/Inline/Email.tpl,{$form.email.$blockId.is_bulkmail.html}
templates/CRM/Contact/Form/Inline/Email.tpl,{$form.email.$blockId.is_primary.1.html}
templates/CRM/Contact/Form/Inline/IM.tpl,{$form.oplock_ts.html}
templates/CRM/Contact/Form/Inline/IM.tpl,{$blockId}
templates/CRM/Contact/Form/Inline/IM.tpl,{$form.im.$blockId.name.html}
templates/CRM/Contact/Form/Inline/IM.tpl,{$form.im.$blockId.location_type_id.html}
templates/CRM/Contact/Form/Inline/IM.tpl,{$form.im.$blockId.provider_id.html}
templates/CRM/Contact/Form/Inline/IM.tpl,{$form.im.$blockId.is_primary.1.html}
templates/CRM/Contact/Form/Inline/OpenID.tpl,{$form.oplock_ts.html}
templates/CRM/Contact/Form/Inline/OpenID.tpl,{$blockId}
templates/CRM/Contact/Form/Inline/OpenID.tpl,{$form.openid.$blockId.openid.html|crmAddClass:twenty}
templates/CRM/Contact/Form/Inline/OpenID.tpl,{$form.openid.$blockId.location_type_id.html}
templates/CRM/Contact/Form/Inline/OpenID.tpl,{$form.openid.$blockId.is_primary.1.html}
templates/CRM/Contact/Form/Inline/Phone.tpl,{$form.oplock_ts.html}
templates/CRM/Contact/Form/Inline/Phone.tpl,{$blockId}
templates/CRM/Contact/Form/Inline/Phone.tpl,{$form.phone.$blockId.phone.html}
templates/CRM/Contact/Form/Inline/Phone.tpl,{$form.phone.$blockId.phone_ext.html|crmAddClass:four}
templates/CRM/Contact/Form/Inline/Phone.tpl,{$form.phone.$blockId.location_type_id.html}
templates/CRM/Contact/Form/Inline/Phone.tpl,{$form.phone.$blockId.phone_type_id.html}
templates/CRM/Contact/Form/Inline/Phone.tpl,{$form.phone.$blockId.is_primary.1.html}
templates/CRM/Contact/Form/Inline/Website.tpl,{$form.oplock_ts.html}
templates/CRM/Contact/Form/Inline/Website.tpl,{$blockId}
templates/CRM/Contact/Form/Inline/Website.tpl,{$form.website.$blockId.url.html|crmAddClass:url}
templates/CRM/Contact/Form/Inline/Website.tpl,{$form.website.$blockId.website_type_id.html}
templates/CRM/Contact/Form/Merge.tpl,{$prev}
templates/CRM/Contact/Form/Merge.tpl,{$next}
templates/CRM/Contact/Form/Merge.tpl,{$flip}
templates/CRM/Contact/Form/Merge.tpl,{$main_cid|escape}
templates/CRM/Contact/Form/Merge.tpl,{$other_cid|escape}
templates/CRM/Contact/Form/Merge.tpl,{$browseUrl}
templates/CRM/Contact/Form/Merge.tpl,{$otherContactTypeIcon}
templates/CRM/Contact/Form/Merge.tpl,{$other_name|escape}
templates/CRM/Contact/Form/Merge.tpl,{$form.toggleSelect.html}
templates/CRM/Contact/Form/Merge.tpl,{$mainContactTypeIcon}
templates/CRM/Contact/Form/Merge.tpl,{$main_name|escape}
templates/CRM/Contact/Form/Merge.tpl,{$summaryRow.label}
templates/CRM/Contact/Form/Merge.tpl,{$summaryRow.other_contact_value}
templates/CRM/Contact/Form/Merge.tpl,{$summaryRow.main_contact_value}
templates/CRM/Contact/Form/Merge.tpl,{$row.title|escape}
templates/CRM/Contact/Form/Merge.tpl,{$row.title|escape}
templates/CRM/Contact/Form/Merge.tpl,{$row.other|escape}
templates/CRM/Contact/Form/Merge.tpl,{$row.other.fileName|escape}
templates/CRM/Contact/Form/Merge.tpl,"{$form.$field.html|crmAddClass:""select-row""}"
templates/CRM/Contact/Form/Merge.tpl,{$blockName|escape}
templates/CRM/Contact/Form/Merge.tpl,{$blockId|escape}
templates/CRM/Contact/Form/Merge.tpl,{$blockName|escape}
templates/CRM/Contact/Form/Merge.tpl,{$blockId|escape}
templates/CRM/Contact/Form/Merge.tpl,{$row.main|escape}
templates/CRM/Contact/Form/Merge.tpl,{$row.main.fileName|escape}
templates/CRM/Contact/Form/Merge.tpl,{$form.location_blocks.$blockName.$blockId.locTypeId.html}
templates/CRM/Contact/Form/Merge.tpl,{$form.location_blocks.$blockName.$blockId.typeTypeId.html}
templates/CRM/Contact/Form/Merge.tpl,{$blockName}
templates/CRM/Contact/Form/Merge.tpl,{$blockId}
templates/CRM/Contact/Form/Merge.tpl,{$form.location_blocks.$blockName.$blockId.operation.html}
templates/CRM/Contact/Form/Merge.tpl,{$form.location_blocks.$blockName.$blockId.set_other_primary.html}
templates/CRM/Contact/Form/Merge.tpl,{$row.main|escape}
templates/CRM/Contact/Form/Merge.tpl,{$row.main.fileName|escape}
templates/CRM/Contact/Form/Merge.tpl,{$params.other_url}
templates/CRM/Contact/Form/Merge.tpl,{$otherUfName}
templates/CRM/Contact/Form/Merge.tpl,"{$form.$paramName.html|crmAddClass:""select-row""}"
templates/CRM/Contact/Form/Merge.tpl,{$params.main_url}
templates/CRM/Contact/Form/Merge.tpl,{$mainUfName}
templates/CRM/Contact/Form/Merge.tpl,{$params.other_url}
templates/CRM/Contact/Form/Merge.tpl,{$params.title}
templates/CRM/Contact/Form/Merge.tpl,"{$form.$paramName.html|crmAddClass:""select-row""}"
templates/CRM/Contact/Form/Merge.tpl,{$params.main_url}
templates/CRM/Contact/Form/Merge.tpl,{$params.title}
templates/CRM/Contact/Form/Merge.tpl,{$form.operation.$paramName.add.html}
templates/CRM/Contact/Form/Merge.tpl,{$locationBlockInfo}
templates/CRM/Contact/Form/Merge.tpl,{$mainLocBlock}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$fieldSetTitle}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.prefix_id.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.first_name.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.middle_name.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.last_name.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.suffix_id.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.prefix_id.html}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.first_name.html}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.middle_name.html|crmAddClass:eight}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.last_name.html}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.suffix_id.html}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.household_name.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.household_name.html|crmAddClass:big}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.organization_name.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.organization_name.html|crmAddClass:big}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.phone.$index.phone.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.phone.$index.phone.html}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.email.$index.email.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.email.$index.email.html}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.phone.$index.phone.id}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.phone.$index.phone.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.phone.$index.phone.html}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.email.$index.email.id}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.email.$index.email.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.email.$index.email.html}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.street_address.id}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.street_address.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.street_address.html}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.supplemental_address_1.id}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.supplemental_address_1.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.supplemental_address_1.html}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.supplemental_address_2.id}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.supplemental_address_2.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.supplemental_address_2.html}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.supplemental_address_3.id}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.supplemental_address_3.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.supplemental_address_3.html}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.city.id}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.city.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.city.html}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.postal_code.id}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.postal_code.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.postal_code.html}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.postal_code_suffix.html}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.country_id.id}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.country_id.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.country_id.html}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.state_province_id.id}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.state_province_id.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.state_province_id.html}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.geo_code_1.id}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.geo_code_2.id}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.geo_code_1.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.geo_code_2.label}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.geo_code_1.html}
templates/CRM/Contact/Form/OnBehalfOf.tpl,{$form.address.$index.geo_code_2.html}
templates/CRM/Contact/Form/RelatedContact.tpl,{$form.buttons.html}
templates/CRM/Contact/Form/Relationship.tpl,{$row.relation}
templates/CRM/Contact/Form/Relationship.tpl,{$row.name}
templates/CRM/Contact/Form/Relationship.tpl,{$row.start_date|crmDate}
templates/CRM/Contact/Form/Relationship.tpl,{$row.end_date|crmDate}
templates/CRM/Contact/Form/Relationship.tpl,{$row.description}
templates/CRM/Contact/Form/Relationship.tpl,{$rec}
templates/CRM/Contact/Form/Relationship.tpl,{$form.relationship_type_id.label}
templates/CRM/Contact/Form/Relationship.tpl,{$form.relationship_type_id.html}
templates/CRM/Contact/Form/Relationship.tpl,{$form.related_contact_id.label}
templates/CRM/Contact/Form/Relationship.tpl,{$form.related_contact_id.html}
templates/CRM/Contact/Form/Relationship.tpl,{$form.is_current_employer.label}
templates/CRM/Contact/Form/Relationship.tpl,{$form.is_current_employer.html}
templates/CRM/Contact/Form/Relationship.tpl,{$form.start_date.label}
templates/CRM/Contact/Form/Relationship.tpl,{$form.start_date.html}
templates/CRM/Contact/Form/Relationship.tpl,{$form.end_date.label}
templates/CRM/Contact/Form/Relationship.tpl,{$form.end_date.html}
templates/CRM/Contact/Form/Relationship.tpl,{$form.description.label}
templates/CRM/Contact/Form/Relationship.tpl,{$form.description.html}
templates/CRM/Contact/Form/Relationship.tpl,{$form.note.label}
templates/CRM/Contact/Form/Relationship.tpl,{$form.note.html}
templates/CRM/Contact/Form/Relationship.tpl,{$display_name_b}
templates/CRM/Contact/Form/Relationship.tpl,{$form.is_permission_a_b.html}
templates/CRM/Contact/Form/Relationship.tpl,{$form.is_permission_b_a.html}
templates/CRM/Contact/Form/Relationship.tpl,{$form.is_active.label}
templates/CRM/Contact/Form/Relationship.tpl,{$form.is_active.html}
templates/CRM/Contact/Form/Relationship.tpl,{$form.formClass}
templates/CRM/Contact/Form/Relationship.tpl,{$contactTypes|@json_encode}
templates/CRM/Contact/Form/Relationship.tpl,{$employmentRelationship}
templates/CRM/Contact/Form/Search/AdvancedCriteria.tpl,{$component_mappings}
templates/CRM/Contact/Form/Search/AdvancedCriteria.tpl,{$paneValue.id}
templates/CRM/Contact/Form/Search/AdvancedCriteria.tpl,{$paneValue.id}
templates/CRM/Contact/Form/Search/AdvancedCriteria.tpl,{$paneName}
templates/CRM/Contact/Form/Search/AdvancedCriteria.tpl,{$paneValue.id}
templates/CRM/Contact/Form/Search/BasicCriteria.tpl,{$editTitle}
templates/CRM/Contact/Form/Search/BasicCriteria.tpl,{$form.sort_name.label}
templates/CRM/Contact/Form/Search/BasicCriteria.tpl,{$form.sort_name.html}
templates/CRM/Contact/Form/Search/BasicCriteria.tpl,{$form.contact_type.label}
templates/CRM/Contact/Form/Search/BasicCriteria.tpl,{$form.contact_type.html}
templates/CRM/Contact/Form/Search/BasicCriteria.tpl,{$form.group_contact_status.label}
templates/CRM/Contact/Form/Search/BasicCriteria.tpl,{$form.group_contact_status.html}
templates/CRM/Contact/Form/Search/BasicCriteria.tpl,{$form.group.html|crmAddClass:big}
templates/CRM/Contact/Form/Search/BasicCriteria.tpl,{$form.tag.label}
templates/CRM/Contact/Form/Search/BasicCriteria.tpl,{$form.tag.html|crmAddClass:medium}
templates/CRM/Contact/Form/Search/Builder.tpl,{$form.buttons.html}
templates/CRM/Contact/Form/Search/Builder.tpl,{$initHideBoxes}
templates/CRM/Contact/Form/Search/ContactSearchFields.tpl,{$form.sort_name.label}
templates/CRM/Contact/Form/Search/ContactSearchFields.tpl,{$form.sort_name.html|crmAddClass:'twenty'}
templates/CRM/Contact/Form/Search/ContactSearchFields.tpl,{$form.buttons.html}
templates/CRM/Contact/Form/Search/ContactSearchFields.tpl,{$form.contact_tags.label}
templates/CRM/Contact/Form/Search/ContactSearchFields.tpl,{$form.contact_tags.html}
templates/CRM/Contact/Form/Search/ContactSearchFields.tpl,{$form.group.label}
templates/CRM/Contact/Form/Search/ContactSearchFields.tpl,{$form.group.html}
templates/CRM/Contact/Form/Search/ContactSearchFields.tpl,{$form.contact_type.label}
templates/CRM/Contact/Form/Search/ContactSearchFields.tpl,{$form.contact_type.html}
templates/CRM/Contact/Form/Search/ContactSearchFields.tpl,{$form.deleted_contacts.html}
templates/CRM/Contact/Form/Search/ContactSearchFields.tpl,{$form.deleted_contacts.label}
templates/CRM/Contact/Form/Search/Criteria/Basic.tpl,{$fieldSpec.class|escape}
templates/CRM/Contact/Form/Search/Criteria/Basic.tpl,{$field.label}
templates/CRM/Contact/Form/Search/Criteria/Basic.tpl,{$fieldSpec.help}
templates/CRM/Contact/Form/Search/Criteria/Basic.tpl,{$field.html}
templates/CRM/Contact/Form/Search/Criteria/Basic.tpl,{$fieldSpec.description}
templates/CRM/Contact/Form/Search/Criteria/ChangeLog.tpl,{$form.log_date.html}
templates/CRM/Contact/Form/Search/Criteria/ChangeLog.tpl,{$form.changed_by.html}
templates/CRM/Contact/Form/Search/Criteria/Demographics.tpl,{$form.is_deceased.label}
templates/CRM/Contact/Form/Search/Criteria/Demographics.tpl,{$form.is_deceased.html}
templates/CRM/Contact/Form/Search/Criteria/Demographics.tpl,{$form.gender_id.label}
templates/CRM/Contact/Form/Search/Criteria/Demographics.tpl,{$form.gender_id.html}
templates/CRM/Contact/Form/Search/Criteria/DisplaySettings.tpl,{$form.component_mode.label}
templates/CRM/Contact/Form/Search/Criteria/DisplaySettings.tpl,{$form.component_mode.html}
templates/CRM/Contact/Form/Search/Criteria/DisplaySettings.tpl,{$form.display_relationship_type.html}
templates/CRM/Contact/Form/Search/Criteria/DisplaySettings.tpl,{$form.uf_group_id.label}
templates/CRM/Contact/Form/Search/Criteria/DisplaySettings.tpl,{$form.uf_group_id.html}
templates/CRM/Contact/Form/Search/Criteria/Fields/group.tpl,{$form.group.html}
templates/CRM/Contact/Form/Search/Criteria/Fields/group.tpl,{$form.group_type.html}
templates/CRM/Contact/Form/Search/Criteria/Fields/preferred_communication_method.tpl,{$form.preferred_communication_method.label}
templates/CRM/Contact/Form/Search/Criteria/Fields/preferred_communication_method.tpl,{$form.preferred_communication_method.html}
templates/CRM/Contact/Form/Search/Criteria/Fields/preferred_communication_method.tpl,{$form.email_on_hold.label}
templates/CRM/Contact/Form/Search/Criteria/Fields/preferred_communication_method.tpl,{$form.email_on_hold.html}
templates/CRM/Contact/Form/Search/Criteria/Fields/preferred_communication_method.tpl,{$form.email_on_hold.html}
templates/CRM/Contact/Form/Search/Criteria/Fields/preferred_communication_method.tpl,{$form.email_on_hold.label}
templates/CRM/Contact/Form/Search/Criteria/Fields/privacy_toggle.tpl,{$form.privacy_toggle.html}
templates/CRM/Contact/Form/Search/Criteria/Fields/privacy_toggle.tpl,{$form.privacy_options.html}
templates/CRM/Contact/Form/Search/Criteria/Fields/privacy_toggle.tpl,{$form.privacy_operator.html}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.street_address.label}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.street_address.html|crmAddClass:big}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.street_number.label}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.street_number.html}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.street_name.label}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.street_name.html}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.street_unit.label}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.street_unit.html|crmAddClass:four}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.supplemental_address_1.label}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.supplemental_address_1.html}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.supplemental_address_2.label}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.supplemental_address_2.html}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.supplemental_address_3.label}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.supplemental_address_3.html}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.city.label}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.city.html}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.country.label}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.country.html}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.state_province.label}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.state_province.html}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.county.label}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.county.html}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.world_region.label}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.world_region.html}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.location_type.label}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.location_type.html}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.address_name.label}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.address_name.html}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.postal_code.label}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.postal_code.html}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.postal_code_low.html}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.postal_code_high.html}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.prox_distance.label}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.prox_distance.html}
templates/CRM/Contact/Form/Search/Criteria/Location.tpl,{$form.prox_distance_unit.html}
templates/CRM/Contact/Form/Search/Criteria/Notes.tpl,{$form.note.label}
templates/CRM/Contact/Form/Search/Criteria/Notes.tpl,{$form.note.html}
templates/CRM/Contact/Form/Search/Criteria/Notes.tpl,{$form.note_option.label}
templates/CRM/Contact/Form/Search/Criteria/Notes.tpl,{$form.note_option.html}
templates/CRM/Contact/Form/Search/Criteria/Relationship.tpl,{$form.relation_type_id.label}
templates/CRM/Contact/Form/Search/Criteria/Relationship.tpl,{$form.relation_type_id.html}
templates/CRM/Contact/Form/Search/Criteria/Relationship.tpl,{$form.relation_target_name.label}
templates/CRM/Contact/Form/Search/Criteria/Relationship.tpl,{$form.relation_target_name.html|crmAddClass:huge}
templates/CRM/Contact/Form/Search/Criteria/Relationship.tpl,{$form.relation_status.label}
templates/CRM/Contact/Form/Search/Criteria/Relationship.tpl,{$form.relation_status.html}
templates/CRM/Contact/Form/Search/Criteria/Relationship.tpl,{$form.relation_permission.label}
templates/CRM/Contact/Form/Search/Criteria/Relationship.tpl,{$form.relation_permission.html}
templates/CRM/Contact/Form/Search/Criteria/Relationship.tpl,{$form.relation_target_group.label}
templates/CRM/Contact/Form/Search/Criteria/Relationship.tpl,{$form.relation_target_group.html|crmAddClass:huge}
templates/CRM/Contact/Form/Search/Criteria/SearchSettings.tpl,{$form.operator.label}
templates/CRM/Contact/Form/Search/Criteria/SearchSettings.tpl,{$form.operator.html}
templates/CRM/Contact/Form/Search/Criteria/SearchSettings.tpl,{$form.deleted_contacts.html}
templates/CRM/Contact/Form/Search/Criteria/SearchSettings.tpl,{$form.deleted_contacts.label}
templates/CRM/Contact/Form/Search/Criteria/Task.tpl,{$form.task_id.label}
templates/CRM/Contact/Form/Search/Criteria/Task.tpl,{$form.task_id.html}
templates/CRM/Contact/Form/Search/Criteria/Task.tpl,{$form.task_status_id.label}
templates/CRM/Contact/Form/Search/Criteria/Task.tpl,{$form.task_status_id.html}
templates/CRM/Contact/Form/Search/Custom/ActivitySearch.tpl,{$element}
templates/CRM/Contact/Form/Search/Custom/ActivitySearch.tpl,{$form.$element.label}
templates/CRM/Contact/Form/Search/Custom/ActivitySearch.tpl,{$form.$element.html}
templates/CRM/Contact/Form/Search/Custom/ActivitySearch.tpl,{$form.toggleSelect.html}
templates/CRM/Contact/Form/Search/Custom/ActivitySearch.tpl,{$sort->_response.$key.link}
templates/CRM/Contact/Form/Search/Custom/ActivitySearch.tpl,{$header.name}
templates/CRM/Contact/Form/Search/Custom/ActivitySearch.tpl,{$form.$cbName.html}
templates/CRM/Contact/Form/Search/Custom/ActivitySearch.tpl,{$row.sort_name}
templates/CRM/Contact/Form/Search/Custom/ActivitySearch.tpl,{$row.activity_subject}
templates/CRM/Contact/Form/Search/Custom/ActivitySearch.tpl,{$row.$fName}
templates/CRM/Contact/Form/Search/Custom/ActivitySearch.tpl,{$row.action}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$form.min_amount_1.html}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$form.max_amount_1.html}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$form.start_date_1.html}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$form.end_date_1.html}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$form.is_first_amount.html}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$form.min_amount_2.html}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$form.max_amount_2.html}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$form.start_date_2.html}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$form.end_date_2.html}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$form.exclude_min_amount.html}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$form.exclude_max_amount.html}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$form.exclude_start_date.html}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$form.exclude_end_date.html}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$summary.summary}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$summary.total}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$form.toggleSelect.html}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$sort->_response.$key.link}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$header.name}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$row.contact_id}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$form.$cbName.html}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$row.sort_name}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$row.$fName}
templates/CRM/Contact/Form/Search/Custom/ContribSYBNT.tpl,{$row.action}
templates/CRM/Contact/Form/Search/Custom/ContributionAggregate.tpl,{$element}
templates/CRM/Contact/Form/Search/Custom/ContributionAggregate.tpl,{$form.$element.label}
templates/CRM/Contact/Form/Search/Custom/ContributionAggregate.tpl,{$form.$element.html}
templates/CRM/Contact/Form/Search/Custom/ContributionAggregate.tpl,{$form.financial_type_id.html|crmAddClass:twenty}
templates/CRM/Contact/Form/Search/Custom/ContributionAggregate.tpl,{$summary.summary}
templates/CRM/Contact/Form/Search/Custom/ContributionAggregate.tpl,{$summary.total}
templates/CRM/Contact/Form/Search/Custom/ContributionAggregate.tpl,{$form.toggleSelect.html}
templates/CRM/Contact/Form/Search/Custom/ContributionAggregate.tpl,{$sort->_response.$key.link}
templates/CRM/Contact/Form/Search/Custom/ContributionAggregate.tpl,{$header.name}
templates/CRM/Contact/Form/Search/Custom/ContributionAggregate.tpl,{$row.contact_id}
templates/CRM/Contact/Form/Search/Custom/ContributionAggregate.tpl,{$form.$cbName.html}
templates/CRM/Contact/Form/Search/Custom/ContributionAggregate.tpl,{$row.sort_name}
templates/CRM/Contact/Form/Search/Custom/ContributionAggregate.tpl,{$row.$fName}
templates/CRM/Contact/Form/Search/Custom/ContributionAggregate.tpl,{$row.action}
templates/CRM/Contact/Form/Search/Custom/EventDetails.tpl,{$config->resourceBase}
templates/CRM/Contact/Form/Search/Custom/EventDetails.tpl,{$config->resourceBase}
templates/CRM/Contact/Form/Search/Custom/EventDetails.tpl,{$element}
templates/CRM/Contact/Form/Search/Custom/EventDetails.tpl,{$form.$element.label}
templates/CRM/Contact/Form/Search/Custom/EventDetails.tpl,{$form.$element.html}
templates/CRM/Contact/Form/Search/Custom/EventDetails.tpl,{$event_val.html}
templates/CRM/Contact/Form/Search/Custom/EventDetails.tpl,{$sort->_response.$key.link}
templates/CRM/Contact/Form/Search/Custom/EventDetails.tpl,{$header.name}
templates/CRM/Contact/Form/Search/Custom/EventDetails.tpl,{$row.contact_id}
templates/CRM/Contact/Form/Search/Custom/EventDetails.tpl,{$row.sort_name}
templates/CRM/Contact/Form/Search/Custom/EventDetails.tpl,{$row.$fName|crmMoney}
templates/CRM/Contact/Form/Search/Custom/EventDetails.tpl,{$row.$fName}
templates/CRM/Contact/Form/Search/Custom/EventDetails.tpl,{$row.$fName}
templates/CRM/Contact/Form/Search/Custom/EventDetails.tpl,{$summary.participant_count}
templates/CRM/Contact/Form/Search/Custom/EventDetails.tpl,{$summary.payment_amount|crmMoney}
templates/CRM/Contact/Form/Search/Custom/EventDetails.tpl,{$summary.fee|crmMoney}
templates/CRM/Contact/Form/Search/Custom/EventDetails.tpl,{$summary.net_payment|crmMoney}
templates/CRM/Contact/Form/Search/Custom/EventDetails.tpl,{$showBlock}
templates/CRM/Contact/Form/Search/Custom/EventDetails.tpl,{$hideBlock}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$form.text.label}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$form.text.html}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$form.table.html}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$form.buttons.html}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$summary.Count.Contact}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$summary.Count.Contact}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.sort_name}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.fileHtml}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$summary.Count.Activity}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$summary.Count.Activity}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.activity_type}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.subject|mb_truncate:40}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.details|escape}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.sort_name}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.target_sort_name}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.assignee_sort_name}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.fileHtml}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$summary.Count.Case}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$summary.Count.Case}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.sort_name}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,"{$row.case_start_date|crmDate:""%b %d, %Y %l:%M %P""}"
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,"{$row.case_end_date|crmDate:""%b %d, %Y %l:%M %P""}"
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.case_id}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.fileHtml}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.case_start_date|crmDate}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.case_end_date|crmDate}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$summary.Count.Contribution}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$summary.Count.Contribution}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.sort_name}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.contribution_total_amount|crmMoney}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.financial_type}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.contribution_source}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,"{$row.contribution_receive_date|crmDate:""%b %d, %Y %l:%M %P""}"
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.contribution_status}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.fileHtml}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.contribution_receive_date|crmDate}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$summary.Count.Participant}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$summary.Count.Participant}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.sort_name}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.event_title}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.participant_fee_level}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.participant_fee_amount|crmMoney}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,"{$row.participant_register_date|crmDate:""%b %d, %Y %l:%M %P""}"
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.participant_source}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.participant_status}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.participant_role}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.fileHtml}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.participant_register_date|crmDate}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$summary.Count.Membership}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$summary.Count.Membership}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.sort_name}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.membership_type}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.membership_fee|crmMoney}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,"{$row.membership_start_date|crmDate:""%b %d, %Y %l:%M %P""}"
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,"{$row.membership_end_date|crmDate:""%b %d, %Y %l:%M %P""}"
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.membership_source}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.membership_status}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.fileHtml}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.membership_start_date|crmDate}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.membership_end_date|crmDate}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$summary.Count.File}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$summary.Count.File}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.file_url}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.file_name}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.file_mime_type}
templates/CRM/Contact/Form/Search/Custom/FullText.tpl,{$row.file_url}
templates/CRM/Contact/Form/Search/Custom/MultipleValues.tpl,{$summary.summary}
templates/CRM/Contact/Form/Search/Custom/MultipleValues.tpl,{$summary.total}
templates/CRM/Contact/Form/Search/Custom/MultipleValues.tpl,{$form.toggleSelect.html}
templates/CRM/Contact/Form/Search/Custom/MultipleValues.tpl,{$sort->_response.$key.link}
templates/CRM/Contact/Form/Search/Custom/MultipleValues.tpl,{$header.name}
templates/CRM/Contact/Form/Search/Custom/MultipleValues.tpl,{$row.contact_id}
templates/CRM/Contact/Form/Search/Custom/MultipleValues.tpl,{$form.$cbName.html}
templates/CRM/Contact/Form/Search/Custom/MultipleValues.tpl,{$row.sort_name}
templates/CRM/Contact/Form/Search/Custom/MultipleValues.tpl,{$row.$fName}
templates/CRM/Contact/Form/Search/Custom/MultipleValues.tpl,{$row.action}
templates/CRM/Contact/Form/Search/Custom/MultipleValuesCriteria.tpl,{$editTitle}
templates/CRM/Contact/Form/Search/Custom/MultipleValuesCriteria.tpl,{$form.sort_name.label}
templates/CRM/Contact/Form/Search/Custom/MultipleValuesCriteria.tpl,{$form.sort_name.html}
templates/CRM/Contact/Form/Search/Custom/MultipleValuesCriteria.tpl,{$form.contact_type.label}
templates/CRM/Contact/Form/Search/Custom/MultipleValuesCriteria.tpl,{$form.contact_type.html}
templates/CRM/Contact/Form/Search/Custom/MultipleValuesCriteria.tpl,{$form.group.label}
templates/CRM/Contact/Form/Search/Custom/MultipleValuesCriteria.tpl,{$form.group.html|crmAddClass:big}
templates/CRM/Contact/Form/Search/Custom/MultipleValuesCriteria.tpl,{$form.tag.label}
templates/CRM/Contact/Form/Search/Custom/MultipleValuesCriteria.tpl,{$form.tag.html|crmAddClass:medium}
templates/CRM/Contact/Form/Search/Custom/MultipleValuesCriteria.tpl,{$boxClass}
templates/CRM/Contact/Form/Search/Custom/MultipleValuesCriteria.tpl,{$group_val.html}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.distance.label}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.distance.html|crmAddClass:four}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.prox_distance_unit.html}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.street_address.label}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.street_address.html}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.city.label}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.city.html}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.postal_code.label}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.postal_code.html}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.country_id.label}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.country_id.html}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.state_province_id.label}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.state_province_id.html}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.geo_code_1.label}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.geo_code_1.html}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.geo_code_2.label}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.geo_code_2.html}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.group.label}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.group.html}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.tag.label}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.tag.html}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$summary.summary}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$summary.total}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.toggleSelect.html}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$sort->_response.$key.link}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$header.name}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$row.contact_id}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$form.$cbName.html}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$row.sort_name}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$row.$fName}
templates/CRM/Contact/Form/Search/Custom/Proximity.tpl,{$row.action}
templates/CRM/Contact/Form/Search/Custom.tpl,{$element}
templates/CRM/Contact/Form/Search/Custom.tpl,{$form.$element.label}
templates/CRM/Contact/Form/Search/Custom.tpl,{$form.$element.html}
templates/CRM/Contact/Form/Search/Custom.tpl,{$summary.summary}
templates/CRM/Contact/Form/Search/Custom.tpl,{$summary.total}
templates/CRM/Contact/Form/Search/Custom.tpl,{$form.toggleSelect.html}
templates/CRM/Contact/Form/Search/Custom.tpl,{$sort->_response.$key.link}
templates/CRM/Contact/Form/Search/Custom.tpl,{$header.name}
templates/CRM/Contact/Form/Search/Custom.tpl,{$row.contact_id}
templates/CRM/Contact/Form/Search/Custom.tpl,{$form.$cbName.html}
templates/CRM/Contact/Form/Search/Custom.tpl,{$row.sort_name}
templates/CRM/Contact/Form/Search/Custom.tpl,{$row.$fName}
templates/CRM/Contact/Form/Search/Custom.tpl,{$row.action}
templates/CRM/Contact/Form/Search/Intro.tpl,{$editSmartGroupURL}
templates/CRM/Contact/Form/Search/Intro.tpl,{$addMembersURL}
templates/CRM/Contact/Form/Search/ResultTasks.tpl,{$advSearchURL}
templates/CRM/Contact/Form/Search/ResultTasks.tpl,{$searchBuilderURL}
templates/CRM/Contact/Form/Search/ResultTasks.tpl,{$searchBuilderURL}
templates/CRM/Contact/Form/Search/ResultTasks.tpl,{$advSearchURL}
templates/CRM/Contact/Form/Search/ResultTasks.tpl,{$savedSearch.name}
templates/CRM/Contact/Form/Search/ResultTasks.tpl,{$form.radio_ts.ts_all.html}
templates/CRM/Contact/Form/Search/ResultTasks.tpl,{$ts_all_id}
templates/CRM/Contact/Form/Search/ResultTasks.tpl,{$form.radio_ts.ts_sel.html}
templates/CRM/Contact/Form/Search/ResultTasks.tpl,{$ts_sel_id}
templates/CRM/Contact/Form/Search/ResultTasks.tpl,{$form.task.html}
templates/CRM/Contact/Form/Search/ResultTasks.tpl,{$form._qf_Advanced_next_action.html}
templates/CRM/Contact/Form/Search/ResultTasks.tpl,{$form._qf_Builder_next_action.html}
templates/CRM/Contact/Form/Search/ResultTasks.tpl,{$form._qf_Custom_next_action.html}
templates/CRM/Contact/Form/Search/ResultTasks.tpl,{$form._qf_Basic_next_action.html}
templates/CRM/Contact/Form/Search/table.tpl,{$form.mapper[$x][$i].html}
templates/CRM/Contact/Form/Search/table.tpl,{$form.operator[$x][$i].html|crmAddClass:'required'}
templates/CRM/Contact/Form/Search/table.tpl,{$x}
templates/CRM/Contact/Form/Search/table.tpl,{$i}
templates/CRM/Contact/Form/Search/table.tpl,{$form.value[$x][$i].html|crmAddClass:'required'}
templates/CRM/Contact/Form/Search/table.tpl,{$form.addMore[$x].html}
templates/CRM/Contact/Form/Search/table.tpl,{$form.addBlock.html}
templates/CRM/Contact/Form/Selector.tpl,{$form.toggleSelect.html}
templates/CRM/Contact/Form/Selector.tpl,{$sort->_response.$key.link}
templates/CRM/Contact/Form/Selector.tpl,{$header.name}
templates/CRM/Contact/Form/Selector.tpl,{$row.contact_id}
templates/CRM/Contact/Form/Selector.tpl,{$form.$cbName.html}
templates/CRM/Contact/Form/Selector.tpl,{$row.status}
templates/CRM/Contact/Form/Selector.tpl,{$row.contact_type}
templates/CRM/Contact/Form/Selector.tpl,{$row.sort_name}
templates/CRM/Contact/Form/Selector.tpl,{$value|crmMoney}
templates/CRM/Contact/Form/Selector.tpl,{$value|crmDate}
templates/CRM/Contact/Form/Selector.tpl,{$value}
templates/CRM/Contact/Form/Selector.tpl,{$row.action|replace:'xx':$row.contact_id}
templates/CRM/Contact/Form/Selector.tpl,{$row.contact_id}
templates/CRM/Contact/Form/Selector.tpl,{$form.$cbName.html}
templates/CRM/Contact/Form/Selector.tpl,{$row.status}
templates/CRM/Contact/Form/Selector.tpl,{$row.contact_type}
templates/CRM/Contact/Form/Selector.tpl,{$row.sort_name}
templates/CRM/Contact/Form/Selector.tpl,{$row.street_address|escape}
templates/CRM/Contact/Form/Selector.tpl,"{$row.street_address|mb_truncate:22:""..."":true}"
templates/CRM/Contact/Form/Selector.tpl,{$row.city}
templates/CRM/Contact/Form/Selector.tpl,{$row.state_province}
templates/CRM/Contact/Form/Selector.tpl,{$row.postal_code}
templates/CRM/Contact/Form/Selector.tpl,{$row.country}
templates/CRM/Contact/Form/Selector.tpl,{$row.email|escape}
templates/CRM/Contact/Form/Selector.tpl,"{$row.email|mb_truncate:17:""..."":true}"
templates/CRM/Contact/Form/Selector.tpl,{$row.phone}
templates/CRM/Contact/Form/Selector.tpl,{$value}
templates/CRM/Contact/Form/Selector.tpl,{$row.action|replace:'xx':$row.contact_id}
templates/CRM/Contact/Form/Selector.tpl,{$selectedContactIds|@json_encode}
templates/CRM/Contact/Form/ShareAddress.tpl,{$form.address.$blockId.use_shared_address.html}
templates/CRM/Contact/Form/ShareAddress.tpl,{$form.address.$blockId.use_shared_address.label}
templates/CRM/Contact/Form/ShareAddress.tpl,{$blockId}
templates/CRM/Contact/Form/ShareAddress.tpl,{$form.address.$blockId.master_contact_id.label}
templates/CRM/Contact/Form/ShareAddress.tpl,{$form.address.$blockId.master_contact_id.html}
templates/CRM/Contact/Form/ShareAddress.tpl,{$form.address.$blockId.update_current_employer.html}
templates/CRM/Contact/Form/ShareAddress.tpl,{$form.address.$blockId.update_current_employer.label}
templates/CRM/Contact/Form/ShareAddress.tpl,{$sa_name}
templates/CRM/Contact/Form/ShareAddress.tpl,{$sa_id}
templates/CRM/Contact/Form/ShareAddress.tpl,{$sa.id}
templates/CRM/Contact/Form/ShareAddress.tpl,{$sa_id}
templates/CRM/Contact/Form/ShareAddress.tpl,{$sa.display_text}
templates/CRM/Contact/Form/ShareAddress.tpl,{$sa.location_type}
templates/CRM/Contact/Form/ShareAddress.tpl,{$blockId}
templates/CRM/Contact/Form/ShareAddress.tpl,{$contactType|@json_encode}
templates/CRM/Contact/Form/Task/AddToGroup.tpl,{$form.group_id.html}
templates/CRM/Contact/Form/Task/AddToGroup.tpl,{$form.group_option.html}
templates/CRM/Contact/Form/Task/AddToGroup.tpl,{$form.group_id.label}
templates/CRM/Contact/Form/Task/AddToGroup.tpl,{$form.group_id.html}
templates/CRM/Contact/Form/Task/AddToGroup.tpl,{$form.title.label}
templates/CRM/Contact/Form/Task/AddToGroup.tpl,{$form.title.html}
templates/CRM/Contact/Form/Task/AddToGroup.tpl,{$form.description.label}
templates/CRM/Contact/Form/Task/AddToGroup.tpl,{$form.description.html}
templates/CRM/Contact/Form/Task/AddToGroup.tpl,{$form.group_type.label}
templates/CRM/Contact/Form/Task/AddToGroup.tpl,{$form.group_type.html}
templates/CRM/Contact/Form/Task/AddToParentClass.tpl,{$contactType}
templates/CRM/Contact/Form/Task/AddToParentClass.tpl,{$sort_name}
templates/CRM/Contact/Form/Task/AddToParentClass.tpl,{$contactType}
templates/CRM/Contact/Form/Task/AddToParentClass.tpl,{$form.relationship_type_id.label}
templates/CRM/Contact/Form/Task/AddToParentClass.tpl,{$form.relationship_type_id.html}
templates/CRM/Contact/Form/Task/AddToParentClass.tpl,{$contactType}
templates/CRM/Contact/Form/Task/AddToParentClass.tpl,{$form.name.label}
templates/CRM/Contact/Form/Task/AddToParentClass.tpl,{$form.name.html}
templates/CRM/Contact/Form/Task/AddToParentClass.tpl,{$form.$refresh.html}
templates/CRM/Contact/Form/Task/AddToParentClass.tpl,{$form.$cancel.html}
templates/CRM/Contact/Form/Task/AddToParentClass.tpl,{$form.contact_check[$row.id].html}
templates/CRM/Contact/Form/Task/AddToParentClass.tpl,{$row.type}
templates/CRM/Contact/Form/Task/AddToParentClass.tpl,{$row.name}
templates/CRM/Contact/Form/Task/AddToParentClass.tpl,{$row.city}
templates/CRM/Contact/Form/Task/AddToParentClass.tpl,{$row.state}
templates/CRM/Contact/Form/Task/AddToParentClass.tpl,{$row.email}
templates/CRM/Contact/Form/Task/AddToParentClass.tpl,{$row.phone}
templates/CRM/Contact/Form/Task/AddToParentClass.tpl,{$form.status.label}
templates/CRM/Contact/Form/Task/AddToParentClass.tpl,{$form.status.html}
templates/CRM/Contact/Form/Task/AddToTag.tpl,{$tag_val.html}
templates/CRM/Contact/Form/Task/AlterPreferences.tpl,{$form.actionTypeOption.html}
templates/CRM/Contact/Form/Task/AlterPreferences.tpl,{$pref_val.html}
templates/CRM/Contact/Form/Task/Batch.tpl,{$config->resourceBase}
templates/CRM/Contact/Form/Task/Batch.tpl,{$field.name}
templates/CRM/Contact/Form/Task/Batch.tpl,{$field.title}
templates/CRM/Contact/Form/Task/Batch.tpl,{$cid}
templates/CRM/Contact/Form/Task/Batch.tpl,{$sortName.$cid}
templates/CRM/Contact/Form/Task/Batch.tpl,{$form.field.$cid.$n.$optionKey.html}
templates/CRM/Contact/Form/Task/Batch.tpl,{$form.field.$cid.$n.html}
templates/CRM/Contact/Form/Task/Batch.tpl,{$form.field.$cid.$phone_ext_field.html}
templates/CRM/Contact/Form/Task/Batch.tpl,{$form.field.$cid.$n.html}
templates/CRM/Contact/Form/Task/Batch.tpl,{$form._qf_BatchUpdateProfile_refresh.html}
templates/CRM/Contact/Form/Task/Batch.tpl,{$form.buttons.html}
templates/CRM/Contact/Form/Task/Email.tpl,{$form.from_email_address.label}
templates/CRM/Contact/Form/Task/Email.tpl,{$form.from_email_address.html}
templates/CRM/Contact/Form/Task/Email.tpl,{$form.to.label}
templates/CRM/Contact/Form/Task/Email.tpl,{$form.to.html}
templates/CRM/Contact/Form/Task/Email.tpl,{$form.emailAddress.html}
templates/CRM/Contact/Form/Task/Email.tpl,{$form.cc_id.label}
templates/CRM/Contact/Form/Task/Email.tpl,{$form.cc_id.html}
templates/CRM/Contact/Form/Task/Email.tpl,{$form.bcc_id.label}
templates/CRM/Contact/Form/Task/Email.tpl,{$form.bcc_id.html}
templates/CRM/Contact/Form/Task/Email.tpl,{$form.template.label}
templates/CRM/Contact/Form/Task/Email.tpl,{$form.template.html}
templates/CRM/Contact/Form/Task/Email.tpl,{$form.subject.label}
templates/CRM/Contact/Form/Task/Email.tpl,{$form.subject.html|crmAddClass:huge}
templates/CRM/Contact/Form/Task/Email.tpl,{$form.formClass}
templates/CRM/Contact/Form/Task/Email.tpl,{$toContact}
templates/CRM/Contact/Form/Task/Email.tpl,{$ccContact}
templates/CRM/Contact/Form/Task/Email.tpl,{$bccContact}
templates/CRM/Contact/Form/Task/EmailCommon.tpl,{$form.html_message.html}
templates/CRM/Contact/Form/Task/EmailCommon.tpl,{$form.text_message.html}
templates/CRM/Contact/Form/Task/EmailCommon.tpl,{$form.updateTemplate.html}
templates/CRM/Contact/Form/Task/EmailCommon.tpl,{$form.updateTemplate.label}
templates/CRM/Contact/Form/Task/EmailCommon.tpl,{$form.saveTemplate.html}
templates/CRM/Contact/Form/Task/EmailCommon.tpl,{$form.saveTemplate.label}
templates/CRM/Contact/Form/Task/EmailCommon.tpl,{$form.saveTemplateName.label}
templates/CRM/Contact/Form/Task/EmailCommon.tpl,{$form.saveTemplateName.html|crmAddClass:huge}
templates/CRM/Contact/Form/Task/GMapsInput.tpl,{$title}
templates/CRM/Contact/Form/Task/GMapsInput.tpl,{$query}
templates/CRM/Contact/Form/Task/GMapsInput.tpl,{$center.lat}
templates/CRM/Contact/Form/Task/GMapsInput.tpl,{$center.lng}
templates/CRM/Contact/Form/Task/GMapsInput.tpl,{$span.lat}
templates/CRM/Contact/Form/Task/GMapsInput.tpl,{$span.lng}
templates/CRM/Contact/Form/Task/GMapsInput.tpl,{$panelStyle}
templates/CRM/Contact/Form/Task/GMapsInput.tpl,{$id}
templates/CRM/Contact/Form/Task/GMapsInput.tpl,{$location.lat}
templates/CRM/Contact/Form/Task/GMapsInput.tpl,{$location.lng}
templates/CRM/Contact/Form/Task/GMapsInput.tpl,{$location.displayName}
templates/CRM/Contact/Form/Task/GMapsInput.tpl,{$location.address}
templates/CRM/Contact/Form/Task/HookSample.tpl,{$row.id}
templates/CRM/Contact/Form/Task/HookSample.tpl,{$row.contact_type}
templates/CRM/Contact/Form/Task/HookSample.tpl,{$row.name}
templates/CRM/Contact/Form/Task/HookSample.tpl,{$row.email}
templates/CRM/Contact/Form/Task/Label.tpl,{$form.label_name.label}
templates/CRM/Contact/Form/Task/Label.tpl,{$form.label_name.html}
templates/CRM/Contact/Form/Task/Label.tpl,{$form.location_type_id.label}
templates/CRM/Contact/Form/Task/Label.tpl,{$form.location_type_id.html}
templates/CRM/Contact/Form/Task/Label.tpl,{$form.do_not_mail.html}
templates/CRM/Contact/Form/Task/Label.tpl,{$form.do_not_mail.label}
templates/CRM/Contact/Form/Task/Label.tpl,{$form.merge_same_address.html}
templates/CRM/Contact/Form/Task/Label.tpl,{$form.merge_same_address.label}
templates/CRM/Contact/Form/Task/Label.tpl,{$form.merge_same_household.html}
templates/CRM/Contact/Form/Task/Label.tpl,{$form.merge_same_household.label}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$mapKey}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$center.lat}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$center.lng}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$location.url}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$location.displayName}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$location.location_type}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$location.address}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$location.displayAddress}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$profileURL}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$location.displayName}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$location.location_type}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$location.address}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$location.displayAddress}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$location.address}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$location.lat}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$location.lng}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$location.image}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$config->resourceBase}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$config->resourceBase}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$config->resourceBase}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$defaultZoom}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$defaultZoom}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$width}
templates/CRM/Contact/Form/Task/Map/Google.tpl,{$height}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$center.lng}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$center.lat}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$defaultZoom}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$location.url}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$location.displayName}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$location.location_type}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$location.address}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$profileURL}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$location.displayName}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$location.location_type}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$location.address}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$location.address}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$location.lng}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$location.lat}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$location.image}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$config->resourceBase}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$config->resourceBase}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$config->resourceBase}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$defaultZoom}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$defaultZoom}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$width}
templates/CRM/Contact/Form/Task/Map/OpenStreetMaps.tpl,{$height}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.template.label}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.template.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.document_file.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.subject.label}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.subject.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.campaign_id.label}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.campaign_id.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.pdf_format_header.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.format_id.label}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.format_id.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.paper_size.label}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.paper_size.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.orientation.label}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.orientation.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.metric.label}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.metric.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.paper_dimensions.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.margin_top.label}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.margin_top.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.margin_bottom.label}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.margin_bottom.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.margin_left.label}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.margin_left.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.margin_right.label}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.margin_right.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.stationery.label}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.stationery.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.bind_format.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.bind_format.label}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.update_format.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.update_format.label}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.html_message.label}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.html_message.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.updateTemplate.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.updateTemplate.label}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.saveTemplate.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.saveTemplate.label}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.saveTemplateName.label}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.saveTemplateName.html|crmAddClass:huge}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.document_type.label}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.document_type.html}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$form.formClass}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$(this).dialog('close');}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$useThisPageFormat}
templates/CRM/Contact/Form/Task/PDFLetterCommon.tpl,{$useSelectedPageFormat}
templates/CRM/Contact/Form/Task/PickProfile.tpl,{$form.uf_group_id.label}
templates/CRM/Contact/Form/Task/PickProfile.tpl,{$form.uf_group_id.html}
templates/CRM/Contact/Form/Task/Print.tpl,{$header}
templates/CRM/Contact/Form/Task/Print.tpl,{$row.sort_name}
templates/CRM/Contact/Form/Task/Print.tpl,{$value}
templates/CRM/Contact/Form/Task/Print.tpl,{$row.$name}
templates/CRM/Contact/Form/Task/Print.tpl,{$row.sort_name}
templates/CRM/Contact/Form/Task/Print.tpl,{$row.street_address}
templates/CRM/Contact/Form/Task/Print.tpl,{$row.city}
templates/CRM/Contact/Form/Task/Print.tpl,{$row.state_province}
templates/CRM/Contact/Form/Task/Print.tpl,{$row.postal_code}
templates/CRM/Contact/Form/Task/Print.tpl,{$row.country}
templates/CRM/Contact/Form/Task/Print.tpl,{$row.email}
templates/CRM/Contact/Form/Task/Print.tpl,{$row.phone}
templates/CRM/Contact/Form/Task/Print.tpl,{$row.do_not_email}
templates/CRM/Contact/Form/Task/Print.tpl,{$row.do_not_phone}
templates/CRM/Contact/Form/Task/Print.tpl,{$row.do_not_mail}
templates/CRM/Contact/Form/Task/ProximityCommon.tpl,{$form.prox_distance.label}
templates/CRM/Contact/Form/Task/ProximityCommon.tpl,{$form.prox_distance.html|crmAddClass:four}
templates/CRM/Contact/Form/Task/ProximityCommon.tpl,{$form.prox_distance_unit.html}
templates/CRM/Contact/Form/Task/ProximityCommon.tpl,{$form.prox_street_address.label}
templates/CRM/Contact/Form/Task/ProximityCommon.tpl,{$form.prox_street_address.html}
templates/CRM/Contact/Form/Task/ProximityCommon.tpl,{$form.prox_city.label}
templates/CRM/Contact/Form/Task/ProximityCommon.tpl,{$form.prox_city.html}
templates/CRM/Contact/Form/Task/ProximityCommon.tpl,{$form.prox_postal_code.label}
templates/CRM/Contact/Form/Task/ProximityCommon.tpl,{$form.prox_postal_code.html}
templates/CRM/Contact/Form/Task/ProximityCommon.tpl,{$form.prox_country_id.label}
templates/CRM/Contact/Form/Task/ProximityCommon.tpl,{$form.prox_country_id.html}
templates/CRM/Contact/Form/Task/ProximityCommon.tpl,{$form.prox_state_province_id.label}
templates/CRM/Contact/Form/Task/ProximityCommon.tpl,{$form.prox_state_province_id.html}
templates/CRM/Contact/Form/Task/RemoveFromGroup.tpl,{$form.group_id.label}
templates/CRM/Contact/Form/Task/RemoveFromGroup.tpl,{$form.group_id.html}
templates/CRM/Contact/Form/Task/RemoveFromTag.tpl,{$tag_val.html}
templates/CRM/Contact/Form/Task/Result.tpl,{$form.buttons.html}
templates/CRM/Contact/Form/Task/SaveSearch.tpl,{$criteria}
templates/CRM/Contact/Form/Task/SaveSearch.tpl,{$form.title.label}
templates/CRM/Contact/Form/Task/SaveSearch.tpl,{$form.title.html}
templates/CRM/Contact/Form/Task/SaveSearch.tpl,{$form.description.label}
templates/CRM/Contact/Form/Task/SaveSearch.tpl,{$form.description.html}
templates/CRM/Contact/Form/Task/SaveSearch.tpl,{$form.group_type.label}
templates/CRM/Contact/Form/Task/SaveSearch.tpl,{$form.group_type.html}
templates/CRM/Contact/Form/Task/SMS.tpl,{$form.sms_provider_id.label}
templates/CRM/Contact/Form/Task/SMS.tpl,{$form.sms_provider_id.html}
templates/CRM/Contact/Form/Task/SMS.tpl,{$form.to.label}
templates/CRM/Contact/Form/Task/SMS.tpl,{$form.to.html}
templates/CRM/Contact/Form/Task/SMS.tpl,{$form.activity_subject.label}
templates/CRM/Contact/Form/Task/SMS.tpl,{$form.activity_subject.html}
templates/CRM/Contact/Form/Task/SMS.tpl,{$form.SMStemplate.label}
templates/CRM/Contact/Form/Task/SMS.tpl,{$form.SMStemplate.html}
templates/CRM/Contact/Form/Task/SMS.tpl,{$toContact}
templates/CRM/Contact/Form/Task/SMSCommon.tpl,{$form.sms_text_message.label}
templates/CRM/Contact/Form/Task/SMSCommon.tpl,{$form.sms_text_message.html}
templates/CRM/Contact/Form/Task/SMSCommon.tpl,{$form.SMSupdateTemplate.html}
templates/CRM/Contact/Form/Task/SMSCommon.tpl,{$form.SMSupdateTemplate.label}
templates/CRM/Contact/Form/Task/SMSCommon.tpl,{$form.SMSsaveTemplate.html}
templates/CRM/Contact/Form/Task/SMSCommon.tpl,{$form.SMSsaveTemplate.label}
templates/CRM/Contact/Form/Task/SMSCommon.tpl,{$form.SMSsaveTemplateName.label}
templates/CRM/Contact/Form/Task/SMSCommon.tpl,{$form.SMSsaveTemplateName.html|crmAddClass:huge}
templates/CRM/Contact/Form/Task/SMSCommon.tpl,{$max_sms_length}
templates/CRM/Contact/Form/Task/SMSCommon.tpl,{$max_sms_length}
templates/CRM/Contact/Form/Task.tpl,{$group.id}
templates/CRM/Contact/Form/Task.tpl,{$row}
templates/CRM/Contact/Form/Task.tpl,{$group.id}
templates/CRM/Contact/Form/Task.tpl,{$row.displayName}
templates/CRM/Contact/Import/Form/CSV.tpl,{$form.uploadFile.label}
templates/CRM/Contact/Import/Form/CSV.tpl,{$form.uploadFile.html}
templates/CRM/Contact/Import/Form/CSV.tpl,{$form.skipColumnHeader.html}
templates/CRM/Contact/Import/Form/CSV.tpl,{$form.skipColumnHeader.label}
templates/CRM/Contact/Import/Form/DataSource.tpl,{$form.dataSource.label}
templates/CRM/Contact/Import/Form/DataSource.tpl,{$form.dataSource.html}
templates/CRM/Contact/Import/Form/DataSource.tpl,{$form.contactType.label}
templates/CRM/Contact/Import/Form/DataSource.tpl,{$form.contactType.html}
templates/CRM/Contact/Import/Form/DataSource.tpl,{$form.subType.label}
templates/CRM/Contact/Import/Form/DataSource.tpl,{$form.subType.html}
templates/CRM/Contact/Import/Form/DataSource.tpl,{$form.onDuplicate.label}
templates/CRM/Contact/Import/Form/DataSource.tpl,{$form.onDuplicate.html}
templates/CRM/Contact/Import/Form/DataSource.tpl,{$form.dedupe.label}
templates/CRM/Contact/Import/Form/DataSource.tpl,{$form.dedupe.html}
templates/CRM/Contact/Import/Form/DataSource.tpl,{$form.fieldSeparator.label}
templates/CRM/Contact/Import/Form/DataSource.tpl,{$form.fieldSeparator.html}
templates/CRM/Contact/Import/Form/DataSource.tpl,{$form.doGeocodeAddress.html}
templates/CRM/Contact/Import/Form/DataSource.tpl,{$form.doGeocodeAddress.label}
templates/CRM/Contact/Import/Form/DataSource.tpl,{$form.savedMapping.html}
templates/CRM/Contact/Import/Form/DataSource.tpl,{$form.disableUSPS.html}
templates/CRM/Contact/Import/Form/DataSource.tpl,{$form.disableUSPS.label}
templates/CRM/Contact/Import/Form/MapField.tpl,{$initHideBoxes}
templates/CRM/Contact/Import/Form/Mapper.tpl,{$form.mapper[$i].label}
templates/CRM/Contact/Import/Form/Mapper.tpl,{$form.mapper[$i].html}
templates/CRM/Contact/Import/Form/Mapper.tpl,{$i}
templates/CRM/Contact/Import/Form/Mapper.tpl,{$i}
templates/CRM/Contact/Import/Form/Mapper.tpl,{$i}
templates/CRM/Contact/Import/Form/Mapper.tpl,{$i}
templates/CRM/Contact/Import/Form/Mapper.tpl,{$i}
templates/CRM/Contact/Import/Form/Mapper.tpl,{$i}
templates/CRM/Contact/Import/Form/Mapper.tpl,{$i}
templates/CRM/Contact/Import/Form/Mapper.tpl,{$i}
templates/CRM/Contact/Import/Form/Mapper.tpl,{$i}
templates/CRM/Contact/Import/Form/Mapper.tpl,{$form.buttons.html}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$columnNames[$i]}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$dataValues[$j][$i]}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$mapper[$i]}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$relatedContactDetails[$i]}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$relatedContactLocType[$i]}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$relatedContactPhoneType[$i]}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$relatedContactImProvider[$i]}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$relatedContactWebsiteType[$i]}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$locations[$i]}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$phones[$i]}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$ims[$i]}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$websites[$i]}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$mapper[$i]}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$form.mapper[$i].html}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$form.updateMapping.html}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$form.updateMapping.label}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$form.saveMapping.html}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$form.saveMapping.label}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$form.saveMappingName.label}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$form.saveMappingName.html}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$form.saveMappingDesc.label}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$form.saveMappingDesc.html}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$defaultLocationType}
templates/CRM/Contact/Import/Form/MapTable.tpl,{$defaultLocationTypeLabel|@json_encode}
templates/CRM/Contact/Import/Form/Preview.tpl,{$totalRowCount}
templates/CRM/Contact/Import/Form/Preview.tpl,{$invalidRowCount}
templates/CRM/Contact/Import/Form/Preview.tpl,{$downloadErrorRecordsUrl}
templates/CRM/Contact/Import/Form/Preview.tpl,{$conflictRowCount}
templates/CRM/Contact/Import/Form/Preview.tpl,{$downloadConflictRecordsUrl}
templates/CRM/Contact/Import/Form/Preview.tpl,{$validRowCount}
templates/CRM/Contact/Import/Form/Preview.tpl,{$form.newGroupName.label}
templates/CRM/Contact/Import/Form/Preview.tpl,{$form.newGroupName.html}
templates/CRM/Contact/Import/Form/Preview.tpl,{$form.newGroupDesc.label}
templates/CRM/Contact/Import/Form/Preview.tpl,{$form.newGroupDesc.html}
templates/CRM/Contact/Import/Form/Preview.tpl,{$form.newGroupType.label}
templates/CRM/Contact/Import/Form/Preview.tpl,{$form.newGroupType.html}
templates/CRM/Contact/Import/Form/Preview.tpl,{$form.groups.label}
templates/CRM/Contact/Import/Form/Preview.tpl,{$form.groups.html}
templates/CRM/Contact/Import/Form/Preview.tpl,{$form.newTagName.label}
templates/CRM/Contact/Import/Form/Preview.tpl,{$form.newTagName.html}
templates/CRM/Contact/Import/Form/Preview.tpl,{$form.newTagDesc.label}
templates/CRM/Contact/Import/Form/Preview.tpl,{$form.newTagDesc.html}
templates/CRM/Contact/Import/Form/Preview.tpl,{$tag_val.html}
templates/CRM/Contact/Import/Form/SQL.tpl,{$form.sqlQuery.label}
templates/CRM/Contact/Import/Form/SQL.tpl,{$form.sqlQuery.html}
templates/CRM/Contact/Import/Form/Summary.tpl,{$dupeActionString}
templates/CRM/Contact/Import/Form/Summary.tpl,{$unparsedStreetAddressString}
templates/CRM/Contact/Import/Form/Summary.tpl,{$totalRowCount}
templates/CRM/Contact/Import/Form/Summary.tpl,{$invalidRowCount}
templates/CRM/Contact/Import/Form/Summary.tpl,{$downloadErrorRecordsUrl}
templates/CRM/Contact/Import/Form/Summary.tpl,{$unMatchCount}
templates/CRM/Contact/Import/Form/Summary.tpl,{$downloadMismatchRecordsUrl}
templates/CRM/Contact/Import/Form/Summary.tpl,{$conflictRowCount}
templates/CRM/Contact/Import/Form/Summary.tpl,{$downloadConflictRecordsUrl}
templates/CRM/Contact/Import/Form/Summary.tpl,{$duplicateRowCount}
templates/CRM/Contact/Import/Form/Summary.tpl,{$dupeActionString}
templates/CRM/Contact/Import/Form/Summary.tpl,{$downloadDuplicateRecordsUrl}
templates/CRM/Contact/Import/Form/Summary.tpl,{$validRowCount}
templates/CRM/Contact/Import/Form/Summary.tpl,{$group.url}
templates/CRM/Contact/Import/Form/Summary.tpl,{$group.name}
templates/CRM/Contact/Import/Form/Summary.tpl,{$tag.name}
templates/CRM/Contact/Page/ContactImage.tpl,{$imageURL}
templates/CRM/Contact/Page/ContactImage.tpl,{$deleteURL}
templates/CRM/Contact/Page/CustomSearch.tpl,{$customTitle}
templates/CRM/Contact/Page/DashBoard.tpl,{$title}
templates/CRM/Contact/Page/DashBoard.tpl,{$content}
templates/CRM/Contact/Page/DashBoardDashlet.tpl,{$communityMessages}
templates/CRM/Contact/Page/Dashlet.tpl,{$dashID}
templates/CRM/Contact/Page/Dashlet.tpl,{$row.label}
templates/CRM/Contact/Page/Dashlet.tpl,{$dashID}
templates/CRM/Contact/Page/Dashlet.tpl,{$row.label}
templates/CRM/Contact/Page/Dashlet.tpl,{$dashID}
templates/CRM/Contact/Page/Dashlet.tpl,{$row.label}
templates/CRM/Contact/Page/DedupeException.tpl,{$searchcontact1}
templates/CRM/Contact/Page/DedupeException.tpl,{$rowCount}
templates/CRM/Contact/Page/DedupeException.tpl,{$exception.contact_id1}
templates/CRM/Contact/Page/DedupeException.tpl,{$exception.contact_id2}
templates/CRM/Contact/Page/DedupeException.tpl,{$form.formClass}
templates/CRM/Contact/Page/DedupeException.tpl,{$pager->_response.currentLocation|json_encode}
templates/CRM/Contact/Page/DedupeFind.tpl,{$backURL}
templates/CRM/Contact/Page/DedupeFind.tpl,{$backURL}
templates/CRM/Contact/Page/DedupeFind.tpl,{$backURL}
templates/CRM/Contact/Page/DedupeFind.tpl,{$backURL}
templates/CRM/Contact/Page/DedupeFind.tpl,{$backURL}
templates/CRM/Contact/Page/DedupeFind.tpl,{$backURL}
templates/CRM/Contact/Page/DedupeFind.tpl,{$backURL}
templates/CRM/Contact/Page/DedupeFind.tpl,{$sourceUrl}
templates/CRM/Contact/Page/DedupeFind.tpl,{$sourceUrl}
templates/CRM/Contact/Page/DedupeFind.tpl,{$context}
templates/CRM/Contact/Page/DedupeFind.tpl,{$cacheKey|escape}
templates/CRM/Contact/Page/DedupeFind.tpl,{$rgid}
templates/CRM/Contact/Page/DedupeFind.tpl,{$gid}
templates/CRM/Contact/Page/DedupeRules.tpl,{$contactType}
templates/CRM/Contact/Page/DedupeRules.tpl,{$contactType}
templates/CRM/Contact/Page/DedupeRules.tpl,{$row.title}
templates/CRM/Contact/Page/DedupeRules.tpl,{$row.used_display}
templates/CRM/Contact/Page/DedupeRules.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Contact/Page/Inline/Actions.tpl,{$contactId}
templates/CRM/Contact/Page/Inline/Actions.tpl,{$row.ref}
templates/CRM/Contact/Page/Inline/Actions.tpl,{$row.href}
templates/CRM/Contact/Page/Inline/Actions.tpl,{$contactId}
templates/CRM/Contact/Page/Inline/Actions.tpl,{$row.title|escape}
templates/CRM/Contact/Page/Inline/Actions.tpl,{$row.tab}
templates/CRM/Contact/Page/Inline/Actions.tpl,{$row.class}
templates/CRM/Contact/Page/Inline/Actions.tpl,{$row.icon}
templates/CRM/Contact/Page/Inline/Actions.tpl,{$row.title}
templates/CRM/Contact/Page/Inline/Actions.tpl,{$row.ref}
templates/CRM/Contact/Page/Inline/Actions.tpl,{$row.href}
templates/CRM/Contact/Page/Inline/Actions.tpl,{$contactId}
templates/CRM/Contact/Page/Inline/Actions.tpl,{$row.title|escape}
templates/CRM/Contact/Page/Inline/Actions.tpl,{$row.tab}
templates/CRM/Contact/Page/Inline/Actions.tpl,{$row.class}
templates/CRM/Contact/Page/Inline/Actions.tpl,{$row.title}
templates/CRM/Contact/Page/Inline/Address.tpl,{$locationIndex}
templates/CRM/Contact/Page/Inline/Address.tpl,{$add.location_type}
templates/CRM/Contact/Page/Inline/Address.tpl,{$contactId}
templates/CRM/Contact/Page/Inline/Address.tpl,{$locationIndex}
templates/CRM/Contact/Page/Inline/Address.tpl,{$add.id}
templates/CRM/Contact/Page/Inline/Address.tpl,{$add.location_type_id}
templates/CRM/Contact/Page/Inline/Address.tpl,{$add.display|nl2br}
templates/CRM/Contact/Page/Inline/Address.tpl,{$cgId}
templates/CRM/Contact/Page/Inline/Address.tpl,{$locationIndex}
templates/CRM/Contact/Page/Inline/Address.tpl,{$cgId}
templates/CRM/Contact/Page/Inline/Address.tpl,{$locationIndex}
templates/CRM/Contact/Page/Inline/Address.tpl,{$customValue.title}
templates/CRM/Contact/Page/Inline/Address.tpl,{$customField.field_title}
templates/CRM/Contact/Page/Inline/Address.tpl,{$customField.field_value}
templates/CRM/Contact/Page/Inline/Basic.tpl,{$allTags.$tagId.color}
templates/CRM/Contact/Page/Inline/Basic.tpl,{$allTags.$tagId.color|colorContrast}
templates/CRM/Contact/Page/Inline/Basic.tpl,{$allTags.$tagId.description|escape}
templates/CRM/Contact/Page/Inline/Basic.tpl,{$tagName}
templates/CRM/Contact/Page/Inline/Basic.tpl,{$contact_type_label}
templates/CRM/Contact/Page/Inline/Basic.tpl,{$contactId}
templates/CRM/Contact/Page/Inline/Basic.tpl,{$userRecordUrl}
templates/CRM/Contact/Page/Inline/Basic.tpl,{$userRecordId}
templates/CRM/Contact/Page/Inline/Basic.tpl,{$external_identifier}
templates/CRM/Contact/Page/Inline/CommunicationPreferences.tpl,{$contactId}
templates/CRM/Contact/Page/Inline/CommunicationPreferences.tpl,{$privacy_values.$index}
templates/CRM/Contact/Page/Inline/CommunicationPreferences.tpl,{$preferred_communication_method_display}
templates/CRM/Contact/Page/Inline/CommunicationPreferences.tpl,{$preferred_language}
templates/CRM/Contact/Page/Inline/CommunicationPreferences.tpl,{$preferred_mail_format}
templates/CRM/Contact/Page/Inline/CommunicationPreferences.tpl,{$communication_style_display}
templates/CRM/Contact/Page/Inline/CommunicationPreferences.tpl,{$email_greeting_display}
templates/CRM/Contact/Page/Inline/CommunicationPreferences.tpl,{$postal_greeting_display}
templates/CRM/Contact/Page/Inline/CommunicationPreferences.tpl,{$addressee_display}
templates/CRM/Contact/Page/Inline/ContactInfo.tpl,{$contactId}
templates/CRM/Contact/Page/Inline/ContactInfo.tpl,{$current_employer}
templates/CRM/Contact/Page/Inline/ContactInfo.tpl,{$job_title}
templates/CRM/Contact/Page/Inline/ContactInfo.tpl,{$nick_name}
templates/CRM/Contact/Page/Inline/ContactInfo.tpl,{$legal_name}
templates/CRM/Contact/Page/Inline/ContactInfo.tpl,{$sic_code}
templates/CRM/Contact/Page/Inline/ContactInfo.tpl,{$source}
templates/CRM/Contact/Page/Inline/ContactName.tpl,{$contactId}
templates/CRM/Contact/Page/Inline/ContactName.tpl,{$title}
templates/CRM/Contact/Page/Inline/Demographics.tpl,{$contactId}
templates/CRM/Contact/Page/Inline/Demographics.tpl,{$gender_display}
templates/CRM/Contact/Page/Inline/Demographics.tpl,{$birth_date|crmDate:$date_format}
templates/CRM/Contact/Page/Inline/Demographics.tpl,{$deceased_date|crmDate:$date_format}
templates/CRM/Contact/Page/Inline/Email.tpl,{$contactId}
templates/CRM/Contact/Page/Inline/Email.tpl,{$item.location_type}
templates/CRM/Contact/Page/Inline/Email.tpl,{$item.email}
templates/CRM/Contact/Page/Inline/Email.tpl,{$item.email}
templates/CRM/Contact/Page/Inline/Email.tpl,{$item.email}
templates/CRM/Contact/Page/Inline/Email.tpl,{$item.email}
templates/CRM/Contact/Page/Inline/Email.tpl,{$item.hold_date|truncate:10:''|crmDate}
templates/CRM/Contact/Page/Inline/Email.tpl,{$item.hold_date|truncate:10:''|crmDate}
templates/CRM/Contact/Page/Inline/Email.tpl,{$blockId}
templates/CRM/Contact/Page/Inline/Email.tpl,{$blockId}
templates/CRM/Contact/Page/Inline/Email.tpl,{$item.signature_html}
templates/CRM/Contact/Page/Inline/Email.tpl,{$item.signature_text|nl2br}
templates/CRM/Contact/Page/Inline/IM.tpl,{$contactId}
templates/CRM/Contact/Page/Inline/IM.tpl,{$item.provider}
templates/CRM/Contact/Page/Inline/IM.tpl,{$item.location_type}
templates/CRM/Contact/Page/Inline/IM.tpl,{$item.name}
templates/CRM/Contact/Page/Inline/OpenID.tpl,{$contactId}
templates/CRM/Contact/Page/Inline/OpenID.tpl,{$item.location_type}
templates/CRM/Contact/Page/Inline/OpenID.tpl,{$item.openid}
templates/CRM/Contact/Page/Inline/OpenID.tpl,{$item.openid|mb_truncate:40}
templates/CRM/Contact/Page/Inline/Phone.tpl,{$contactId}
templates/CRM/Contact/Page/Inline/Phone.tpl,{$item.location_type}
templates/CRM/Contact/Page/Inline/Phone.tpl,{$item.phone_type}
templates/CRM/Contact/Page/Inline/Phone.tpl,{$item.phone}
templates/CRM/Contact/Page/Inline/Phone.tpl,{$item.phone_ext}
templates/CRM/Contact/Page/Inline/Website.tpl,{$contactId}
templates/CRM/Contact/Page/Inline/Website.tpl,{$item.website_type}
templates/CRM/Contact/Page/Inline/Website.tpl,{$item.url}
templates/CRM/Contact/Page/Inline/Website.tpl,{$item.url}
templates/CRM/Contact/Page/SavedSearch.tpl,{$row.name}
templates/CRM/Contact/Page/SavedSearch.tpl,{$row.description}
templates/CRM/Contact/Page/SavedSearch.tpl,{$criteria}
templates/CRM/Contact/Page/SavedSearch.tpl,{$row.action}
templates/CRM/Contact/Page/SavedSearch.tpl,{$config->resourceBase}
templates/CRM/Contact/Page/View/ContactSmartGroup.tpl,{$row.id}
templates/CRM/Contact/Page/View/ContactSmartGroup.tpl,{$row.title}
templates/CRM/Contact/Page/View/ContactSmartGroup.tpl,{$row.description}
templates/CRM/Contact/Page/View/ContactSmartGroup.tpl,{$row.id}
templates/CRM/Contact/Page/View/ContactSmartGroup.tpl,{$row.title}
templates/CRM/Contact/Page/View/CustomData.tpl,{$customGroupId}
templates/CRM/Contact/Page/View/CustomData.tpl,{$customGroup.help_pre}
templates/CRM/Contact/Page/View/CustomData.tpl,{$showBlocks1}
templates/CRM/Contact/Page/View/CustomData.tpl,{$hideBlocks1}
templates/CRM/Contact/Page/View/CustomData.tpl,{$showBlocks}
templates/CRM/Contact/Page/View/CustomData.tpl,{$hideBlocks}
templates/CRM/Contact/Page/View/CustomData.tpl,{$customGroup.help_post}
templates/CRM/Contact/Page/View/CustomDataFieldView.tpl,{$customGroupId}
templates/CRM/Contact/Page/View/CustomDataFieldView.tpl,{$contactId}
templates/CRM/Contact/Page/View/CustomDataFieldView.tpl,{$customGroupId}
templates/CRM/Contact/Page/View/CustomDataFieldView.tpl,{$customRecId}
templates/CRM/Contact/Page/View/CustomDataFieldView.tpl,{$cgcount}
templates/CRM/Contact/Page/View/CustomDataFieldView.tpl,{$element.field_title}
templates/CRM/Contact/Page/View/CustomDataFieldView.tpl,{$val}
templates/CRM/Contact/Page/View/CustomDataFieldView.tpl,{$element.field_title}
templates/CRM/Contact/Page/View/CustomDataFieldView.tpl,{$element.field_value}
templates/CRM/Contact/Page/View/CustomDataFieldView.tpl,{$element.field_value|crmMoney}
templates/CRM/Contact/Page/View/CustomDataFieldView.tpl,{$element.field_value}
templates/CRM/Contact/Page/View/CustomDataView.tpl,{$cd_edit.name}
templates/CRM/Contact/Page/View/CustomDataView.tpl,{$customGroupId}
templates/CRM/Contact/Page/View/CustomDataView.tpl,{$cd_edit.title}
templates/CRM/Contact/Page/View/CustomDataView.tpl,{$customGroupId}
templates/CRM/Contact/Page/View/CustomDataView.tpl,{$cvID}
templates/CRM/Contact/Page/View/Email.tpl,{$sentDate|crmDate}
templates/CRM/Contact/Page/View/Email.tpl,{$fromName|escape}
templates/CRM/Contact/Page/View/Email.tpl,{$toName|escape}
templates/CRM/Contact/Page/View/Email.tpl,{$subject}
templates/CRM/Contact/Page/View/Email.tpl,{$message}
templates/CRM/Contact/Page/View/Group.tpl,{$displayName}
templates/CRM/Contact/Page/View/Group.tpl,{$row.name}
templates/CRM/Contact/Page/View/Group.tpl,{$row.in_date|crmDate}
templates/CRM/Contact/Page/View/Group.tpl,{$row.out_date|crmDate}
templates/CRM/Contact/Page/View/GroupContact.tpl,{$row.id}
templates/CRM/Contact/Page/View/GroupContact.tpl,{$row.title}
templates/CRM/Contact/Page/View/GroupContact.tpl,{$row.in_date|crmDate}
templates/CRM/Contact/Page/View/GroupContact.tpl,{$contactId}
templates/CRM/Contact/Page/View/GroupContact.tpl,{$row.id}
templates/CRM/Contact/Page/View/GroupContact.tpl,{$row.title}
templates/CRM/Contact/Page/View/GroupContact.tpl,{$row.pending_date|crmDate}
templates/CRM/Contact/Page/View/GroupContact.tpl,{$row.id}
templates/CRM/Contact/Page/View/GroupContact.tpl,{$row.title}
templates/CRM/Contact/Page/View/GroupContact.tpl,{$row.date_added}
templates/CRM/Contact/Page/View/GroupContact.tpl,{$row.date_added|crmDate}
templates/CRM/Contact/Page/View/GroupContact.tpl,{$row.out_date}
templates/CRM/Contact/Page/View/GroupContact.tpl,{$row.out_date|crmDate}
templates/CRM/Contact/Page/View/Log.tpl,{$displayName}
templates/CRM/Contact/Page/View/Log.tpl,{$row.image}
templates/CRM/Contact/Page/View/Log.tpl,{$row.name}
templates/CRM/Contact/Page/View/Log.tpl,{$row.date|crmDate}
templates/CRM/Contact/Page/View/Log.tpl,{$instanceUrl}
templates/CRM/Contact/Page/View/Note.tpl,{$note.subject}
templates/CRM/Contact/Page/View/Note.tpl,{$note.modified_date|crmDate}
templates/CRM/Contact/Page/View/Note.tpl,{$note.privacy}
templates/CRM/Contact/Page/View/Note.tpl,{$note.note|nl2br}
templates/CRM/Contact/Page/View/Note.tpl,{$comment.note}
templates/CRM/Contact/Page/View/Note.tpl,{$comment.createdBy}
templates/CRM/Contact/Page/View/Note.tpl,{$comment.modified_date}
templates/CRM/Contact/Page/View/Note.tpl,{$form.subject.label}
templates/CRM/Contact/Page/View/Note.tpl,{$form.subject.html}
templates/CRM/Contact/Page/View/Note.tpl,{$form.privacy.label}
templates/CRM/Contact/Page/View/Note.tpl,{$form.privacy.html}
templates/CRM/Contact/Page/View/Note.tpl,{$form.note.label}
templates/CRM/Contact/Page/View/Note.tpl,{$form.note.html}
templates/CRM/Contact/Page/View/Note.tpl,{$commentAction|escape:quotes}
templates/CRM/Contact/Page/View/Note.tpl,{$note.id}
templates/CRM/Contact/Page/View/Note.tpl,{$note.id}
templates/CRM/Contact/Page/View/Note.tpl,{$note.id}
templates/CRM/Contact/Page/View/Note.tpl,{$note.id}
templates/CRM/Contact/Page/View/Note.tpl,{$note.id}
templates/CRM/Contact/Page/View/Note.tpl,{$note.id}
templates/CRM/Contact/Page/View/Note.tpl,"{$note.note|mb_truncate:80:""..."":false|nl2br}"
templates/CRM/Contact/Page/View/Note.tpl,{$note.subject}
templates/CRM/Contact/Page/View/Note.tpl,{$note.modified_date}
templates/CRM/Contact/Page/View/Note.tpl,{$note.modified_date|crmDate}
templates/CRM/Contact/Page/View/Note.tpl,{$note.createdBy}
templates/CRM/Contact/Page/View/Note.tpl,{$fileinfo}
templates/CRM/Contact/Page/View/Note.tpl,{$note.action|replace:'xx':$note.id}
templates/CRM/Contact/Page/View/RelationshipPerm.tpl,{$permText}
templates/CRM/Contact/Page/View/RelationshipSelector.tpl,{$entityInClassFormat}
templates/CRM/Contact/Page/View/RelationshipSelector.tpl,{$context}
templates/CRM/Contact/Page/View/RelationshipSelector.tpl,{$entityInClassFormat}
templates/CRM/Contact/Page/View/RelationshipSelector.tpl,{$context}
templates/CRM/Contact/Page/View/RelationshipSelector.tpl,{$header.sort}
templates/CRM/Contact/Page/View/RelationshipSelector.tpl,{$entityInClassFormat}
templates/CRM/Contact/Page/View/RelationshipSelector.tpl,{$header.sort}
templates/CRM/Contact/Page/View/RelationshipSelector.tpl,{$header.name}
templates/CRM/Contact/Page/View/RelationshipSelector.tpl,{$headerkey}
templates/CRM/Contact/Page/View/RelationshipSelector.tpl,{$entityInClassFormat}
templates/CRM/Contact/Page/View/RelationshipSelector.tpl,{$headerkey}
templates/CRM/Contact/Page/View/RelationshipSelector.tpl,{$header.name}
templates/CRM/Contact/Page/View/SMS.tpl,{$sentDate|crmDate}
templates/CRM/Contact/Page/View/SMS.tpl,{$fromName}
templates/CRM/Contact/Page/View/SMS.tpl,{$toName}
templates/CRM/Contact/Page/View/SMS.tpl,{$message}
templates/CRM/Contact/Page/View/Summary.tpl,{$tabValue.id}
templates/CRM/Contact/Page/View/Summary.tpl,{$tabValue.count}
templates/CRM/Contact/Page/View/Summary.tpl,{$tabValue.class}
templates/CRM/Contact/Page/View/Summary.tpl,{$tabValue.url}
templates/CRM/Contact/Page/View/Summary.tpl,{$tabValue.title|escape}
templates/CRM/Contact/Page/View/Summary.tpl,{$tabValue.icon}
templates/CRM/Contact/Page/View/Summary.tpl,{$tabValue.title}
templates/CRM/Contact/Page/View/Summary.tpl,{$tabValue.count}
templates/CRM/Contact/Page/View/Summary.tpl,{$locationIndex}
templates/CRM/Contact/Page/View/SummaryHook.tpl,{$hookContent}
templates/CRM/Contact/Page/View/Useradd.tpl,{$form.name.label}
templates/CRM/Contact/Page/View/Useradd.tpl,{$form.name.html}
templates/CRM/Contact/Page/View/Useradd.tpl,{$form.cms_name.label}
templates/CRM/Contact/Page/View/Useradd.tpl,{$form.cms_name.html}
templates/CRM/Contact/Page/View/Useradd.tpl,{$form.cms_pass.label}
templates/CRM/Contact/Page/View/Useradd.tpl,{$form.cms_pass.html}
templates/CRM/Contact/Page/View/Useradd.tpl,{$form.cms_confirm_pass.label}
templates/CRM/Contact/Page/View/Useradd.tpl,{$form.cms_confirm_pass.html}
templates/CRM/Contact/Page/View/Useradd.tpl,{$form.email.label}
templates/CRM/Contact/Page/View/Useradd.tpl,{$form.email.html}
templates/CRM/Contact/Page/View/UserDashBoard/GroupContact.tpl,{$row.title}
templates/CRM/Contact/Page/View/UserDashBoard/GroupContact.tpl,{$row.in_date|crmDate}
templates/CRM/Contact/Page/View/UserDashBoard/GroupContact.tpl,{$row.title}
templates/CRM/Contact/Page/View/UserDashBoard/GroupContact.tpl,{$row.pending_date|crmDate}
templates/CRM/Contact/Page/View/UserDashBoard/GroupContact.tpl,{$row.title}
templates/CRM/Contact/Page/View/UserDashBoard/GroupContact.tpl,{$row.date_added|crmDate}
templates/CRM/Contact/Page/View/UserDashBoard/GroupContact.tpl,{$row.out_date|crmDate}
templates/CRM/Contact/Page/View/UserDashBoard.tpl,{$element.class}
templates/CRM/Contact/Page/View/UserDashBoard.tpl,{$element.sectionTitle}
templates/CRM/Contribute/Form/AcceptCreditCard.tpl,{$form.name.label}
templates/CRM/Contribute/Form/AcceptCreditCard.tpl,{$form.name.html}
templates/CRM/Contribute/Form/AcceptCreditCard.tpl,{$form.title.label}
templates/CRM/Contribute/Form/AcceptCreditCard.tpl,{$form.title.html}
templates/CRM/Contribute/Form/AcceptCreditCard.tpl,{$form.is_active.label}
templates/CRM/Contribute/Form/AcceptCreditCard.tpl,{$form.is_active.html}
templates/CRM/Contribute/Form/AcceptCreditCard.tpl,{$form.buttons.html}
templates/CRM/Contribute/Form/AdditionalInfo/AdditionalDetail.tpl,{$form.contribution_page_id.label}
templates/CRM/Contribute/Form/AdditionalInfo/AdditionalDetail.tpl,{$valueStyle}
templates/CRM/Contribute/Form/AdditionalInfo/AdditionalDetail.tpl,{$form.contribution_page_id.html|crmAddClass:twenty}
templates/CRM/Contribute/Form/AdditionalInfo/AdditionalDetail.tpl,{$form.note.label}
templates/CRM/Contribute/Form/AdditionalInfo/AdditionalDetail.tpl,{$form.note.html}
templates/CRM/Contribute/Form/AdditionalInfo/AdditionalDetail.tpl,{$form.non_deductible_amount.label}
templates/CRM/Contribute/Form/AdditionalInfo/AdditionalDetail.tpl,{$valueStyle}
templates/CRM/Contribute/Form/AdditionalInfo/AdditionalDetail.tpl,{$form.non_deductible_amount.html|crmMoney:$currency:'':1}
templates/CRM/Contribute/Form/AdditionalInfo/AdditionalDetail.tpl,{$form.fee_amount.label}
templates/CRM/Contribute/Form/AdditionalInfo/AdditionalDetail.tpl,{$valueStyle}
templates/CRM/Contribute/Form/AdditionalInfo/AdditionalDetail.tpl,{$form.fee_amount.html|crmMoney:$currency:'XXX':'YYY'}
templates/CRM/Contribute/Form/AdditionalInfo/AdditionalDetail.tpl,{$form.invoice_id.label}
templates/CRM/Contribute/Form/AdditionalInfo/AdditionalDetail.tpl,{$valueStyle}
templates/CRM/Contribute/Form/AdditionalInfo/AdditionalDetail.tpl,{$form.invoice_id.html}
templates/CRM/Contribute/Form/AdditionalInfo/AdditionalDetail.tpl,{$form.creditnote_id.label}
templates/CRM/Contribute/Form/AdditionalInfo/AdditionalDetail.tpl,{$valueStyle}
templates/CRM/Contribute/Form/AdditionalInfo/AdditionalDetail.tpl,{$form.creditnote_id.html}
templates/CRM/Contribute/Form/AdditionalInfo/AdditionalDetail.tpl,{$form.thankyou_date.label}
templates/CRM/Contribute/Form/AdditionalInfo/AdditionalDetail.tpl,{$form.thankyou_date.html}
templates/CRM/Contribute/Form/AdditionalInfo/Payment.tpl,{$recurringPaymentProcessorIds}
templates/CRM/Contribute/Form/AdditionalInfo/PaymentReminders.tpl,{$form.initial_reminder_day.label}
templates/CRM/Contribute/Form/AdditionalInfo/PaymentReminders.tpl,{$form.initial_reminder_day.html}
templates/CRM/Contribute/Form/AdditionalInfo/PaymentReminders.tpl,{$form.max_reminders.label}
templates/CRM/Contribute/Form/AdditionalInfo/PaymentReminders.tpl,{$form.max_reminders.html}
templates/CRM/Contribute/Form/AdditionalInfo/PaymentReminders.tpl,{$form.additional_reminder_day.label}
templates/CRM/Contribute/Form/AdditionalInfo/PaymentReminders.tpl,{$form.additional_reminder_day.html}
templates/CRM/Contribute/Form/AdditionalInfo/Premium.tpl,{$form.product_name.label}
templates/CRM/Contribute/Form/AdditionalInfo/Premium.tpl,{$form.product_name.html}
templates/CRM/Contribute/Form/AdditionalInfo/Premium.tpl,{$form.min_amount.label}
templates/CRM/Contribute/Form/AdditionalInfo/Premium.tpl,{$form.min_amount.html|crmAddClass:'no-border'|crmMoney:$currency}
templates/CRM/Contribute/Form/AdditionalInfo/Premium.tpl,{$form.fulfilled_date.label}
templates/CRM/Contribute/Form/AdditionalInfo/Premium.tpl,{$form.fulfilled_date.html}
templates/CRM/Contribute/Form/AdditionalInfo/Premium.tpl,{$amt}
templates/CRM/Contribute/Form/AdditionalInfo/Premium.tpl,{$initHideBoxes}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$ccModeLink}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$displayName}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$eventName}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$form.total_amount.label}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$form.currency.html|crmAddClass:eight}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$form.total_amount.html|crmAddClass:eight}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$paymentAmt|crmMoney}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$form.is_email_receipt.label}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$form.is_email_receipt.html}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$form.from_email_address.label}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$form.from_email_address.html}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$form.payment_processor_id.label}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$form.payment_processor_id.html}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$form.trxn_date.label}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$form.trxn_date.html}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$form.payment_instrument_id.label}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$form.payment_instrument_id.html}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$form.trxn_id.label}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$form.trxn_id.html}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$form.fee_amount.label}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$valueStyle}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$form.fee_amount.html|crmMoney:$currency:'XXX':'YYY'}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$form.net_amount.label}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$form.net_amount.html|crmMoney:$currency:'':1}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$dataUrl|@json_encode}
templates/CRM/Contribute/Form/AdditionalPayment.tpl,{$form.formClass}
templates/CRM/Contribute/Form/CancelSubscription.tpl,{$membershipType}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$apiLogin}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$paymentKey}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$subscriptionId}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$apiLogin}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$paymentKey}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$subscriptionId}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$cardNumber}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$expirationDate}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$billingFirstName}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$billingLastName}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$billingAddress}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$billingCity}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$billingState}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$billingZip}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$billingCountry}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$apiLogin}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$paymentKey}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$subscriptionId}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$totalOccurrences}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$amount}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$apiLogin}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$paymentKey}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$refId}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$name|truncate:50}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$intervalLength}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$intervalUnit}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$startDate}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$totalOccurrences}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$amount}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$cardNumber}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$expirationDate}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$invoiceNumber}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$name}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$contactID}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$email}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$billingFirstName}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$billingLastName}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$billingAddress}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$billingCity}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$billingState}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$billingZip}
templates/CRM/Contribute/Form/Contribution/AuthorizeNetARB.tpl,{$billingCountry}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$contributionPageID}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$continueText}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$pay_later_receipt}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$membership_name}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$minimum_fee|crmMoney}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$amount|crmMoney}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$amount+$minimum_fee|crmMoney}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$amount|crmMoney}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$amount_level}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$membership_name}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$minimum_fee|crmMoney}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$totalTaxAmount|crmMoney}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$amount|crmMoney}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$amount_level}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$membership_name}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$minimum_fee|crmMoney}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$soft_credit_type}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$honorName}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$pcp_roll_nickname}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$pcp_personal_note}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$billingName}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$address|nl2br}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$email}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$paymentFieldsetLabel}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$account_holder}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$bank_account_number}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$bank_identification_number}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$bank_name}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$credit_card_type}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$credit_card_number}
templates/CRM/Contribute/Form/Contribution/Confirm.tpl,{$credit_card_exp_date|truncate:7:''|crmDate}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$contriPriceset}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$priceset}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$contributionPageID}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$intro_text}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$display_name}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.total_amount.label}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.total_amount.html|crmMoney}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.pledge_amount.name}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.pledge_amount.label}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.pledge_amount.html}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.is_pledge.name}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.is_pledge.html}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.pledge_frequency_interval.html}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.pledge_frequency_unit.html}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.pledge_installments.html}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.start_date.label}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.start_date.html}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.start_date.label}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.start_date.html}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.start_date.label}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$start_date_display|date_format}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.is_recur.name}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.is_recur.html}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.is_recur.label}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.frequency_interval.html}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$frequency_unit}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.frequency_unit.html}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.installments.html}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.installments.label}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$recurringHelpText}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$pcpSupporterText}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.$n.name}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.$n.label}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.$n.html}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$honor_block_title}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$honor_block_text}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.soft_credit_type_id.name}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.soft_credit_type_id.html}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.pcp_display_in_roll.html}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.pcp_display_in_roll.label}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.pcp_is_anonymous.html}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.pcp_roll_nickname.label}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.pcp_roll_nickname.html}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.pcp_personal_note.label}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.pcp_personal_note.html}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.payment_processor_id.label}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$form.payment_processor_id.html}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$pay_later_text}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$footer_text}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$allowAutoRenewMembership}
templates/CRM/Contribute/Form/Contribution/Main.tpl,{$quickConfig}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$membershipBlock.renewal_title}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$membershipBlock.renewal_text}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$membershipBlock.new_title}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$membershipBlock.new_text}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$autoRenewOption}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$membershipBlock.renewal_title}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$membershipBlock.renewal_text}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$membershipBlock.new_title}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$membershipBlock.new_text}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$membershipBlock.renewal_title}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$membershipBlock.new_title}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$membershipBlock.renewal_title}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$membershipBlock.new_title}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$form.selectMembership.$pid.html}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$row.name}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$row.minimum_fee|crmMoney}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$row.description}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$form.auto_renew.html}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$form.auto_renew.label}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$form.selectMembership.no_thanks.html}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$membershipFieldID}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$takeUserSubmittedAutoRenew}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$singleMembership}
templates/CRM/Contribute/Form/Contribution/MembershipBlock.tpl,{$autoRenewMembershipTypeOptions}
templates/CRM/Contribute/Form/Contribution/OnBehalfOf.tpl,{$form.is_for_organization.name}
templates/CRM/Contribute/Form/Contribution/OnBehalfOf.tpl,{$form.is_for_organization.html}
templates/CRM/Contribute/Form/Contribution/OnBehalfOf.tpl,{$form.is_for_organization.label}
templates/CRM/Contribute/Form/Contribution/OnBehalfOf.tpl,{$fieldSetTitle}
templates/CRM/Contribute/Form/Contribution/OnBehalfOf.tpl,{$form.org_option.html}
templates/CRM/Contribute/Form/Contribution/OnBehalfOf.tpl,{$locDataURL}
templates/CRM/Contribute/Form/Contribution/OnBehalfOf.tpl,{$submittedOnBehalfInfo}
templates/CRM/Contribute/Form/Contribution/OnBehalfOf.tpl,{$submittedOnBehalf}
templates/CRM/Contribute/Form/Contribution/PremiumBlock.tpl,{$premiumBlock.premiums_intro_title}
templates/CRM/Contribute/Form/Contribution/PremiumBlock.tpl,{$premiumBlock.premiums_intro_text}
templates/CRM/Contribute/Form/Contribution/PremiumBlock.tpl,{$premiumBlock.premiums_intro_title}
templates/CRM/Contribute/Form/Contribution/PremiumBlock.tpl,{$premiumBlock.premiums_nothankyou_label}
templates/CRM/Contribute/Form/Contribution/PremiumBlock.tpl,{$premiumBlock.premiums_nothankyou_label}
templates/CRM/Contribute/Form/Contribution/PremiumBlock.tpl,{$row.id}
templates/CRM/Contribute/Form/Contribution/PremiumBlock.tpl,{$row.min_contribution}
templates/CRM/Contribute/Form/Contribution/PremiumBlock.tpl,{$row.thumbnail}
templates/CRM/Contribute/Form/Contribution/PremiumBlock.tpl,{$row.name|escape}
templates/CRM/Contribute/Form/Contribution/PremiumBlock.tpl,{$row.name}
templates/CRM/Contribute/Form/Contribution/PremiumBlock.tpl,{$row.image}
templates/CRM/Contribute/Form/Contribution/PremiumBlock.tpl,{$row.name|escape}
templates/CRM/Contribute/Form/Contribution/PremiumBlock.tpl,{$row.name}
templates/CRM/Contribute/Form/Contribution/PremiumBlock.tpl,{$row.min_contribution}
templates/CRM/Contribute/Form/Contribution/PremiumBlock.tpl,{$row.description}
templates/CRM/Contribute/Form/Contribution/PremiumBlock.tpl,{$form.$pid.html}
templates/CRM/Contribute/Form/Contribution/PremiumBlock.tpl,{$row.options}
templates/CRM/Contribute/Form/Contribution/PremiumBlock.tpl,{$premiumBlock.premiums_nothankyou_label}
templates/CRM/Contribute/Form/Contribution/PremiumBlock.tpl,{$premiumBlock.premiums_nothankyou_label}
templates/CRM/Contribute/Form/Contribution/PremiumBlock.tpl,{$membershipBlock.is_separate_payment}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$contributionPageID}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$thankyou_text}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$friendURL}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$friendText|escape:'html'}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$friendText}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$linkTextUrl}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$linkText|escape:'html'}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$linkText}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$pay_later_receipt}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$membership_name}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$membership_amount|crmMoney}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$amount|crmMoney}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$amount|crmMoney}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$amount+$membership_amount|crmMoney}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$totalTaxAmount|crmMoney}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$amount|crmMoney}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$amount_level}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$receive_date|crmDate}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$trxn_id}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$membership_trx_id}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$soft_credit_type}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$honorName}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$pcp_roll_nickname}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$pcp_personal_note}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$billingName}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$address|nl2br}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$email}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$paymentFieldsetLabel}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$account_holder}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$bank_identification_number}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$bank_name}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$bank_account_number}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$credit_card_type}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$credit_card_number}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$credit_card_exp_date|truncate:7:''|crmDate}
templates/CRM/Contribute/Form/Contribution/ThankYou.tpl,{$thankyou_footer}
templates/CRM/Contribute/Form/Contribution.tpl,{$ccModeLink}
templates/CRM/Contribute/Form/Contribution.tpl,{$displayName}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.contact_id.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.contact_id.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.financial_type_id.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$valueStyle}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.financial_type_id.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.total_amount.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$valueStyle}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.currency.html|crmAddClass:eight}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.total_amount.html|crmAddClass:eight}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.price_set_id.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.is_recur.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.frequency_interval.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.frequency_unit.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.installments.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.installments.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$valueStyle}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.option_type.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$valueStyle}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.receive_date.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.source.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$valueStyle}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.source.html|crmAddClass:huge}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.contribution_status_id.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.contribution_status_id.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$payNowLink}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.cancel_date.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.cancel_date.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.cancel_date.value|crmDate}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.cancel_reason.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.cancel_reason.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.refund_trxn_id.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.refund_trxn_id.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.receive_date.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.receive_date.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.revenue_recognition_date.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.revenue_recognition_date.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.is_email_receipt.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.is_email_receipt.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.is_email_receipt.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.is_email_receipt.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.from_email_address.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.from_email_address.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.receipt_date.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.receipt_date.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.payment_processor_id.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.payment_processor_id.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.payment_instrument_id.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$valueStyle}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.payment_instrument_id.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.trxn_id.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$valueStyle}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.trxn_id.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.pcp_made_through_id.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.pcp_made_through_id.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.pcp_display_in_roll.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.pcp_display_in_roll.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.pcp_roll_nickname.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.pcp_roll_nickname.html|crmAddClass:big}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.pcp_personal_note.label}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.pcp_personal_note.html}
templates/CRM/Contribute/Form/Contribution.tpl,{$contributionMode}
templates/CRM/Contribute/Form/Contribution.tpl,{$qfKey}
templates/CRM/Contribute/Form/Contribution.tpl,{$config->resourceBase}
templates/CRM/Contribute/Form/Contribution.tpl,{$dataUrl|@json_encode}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.formClass}
templates/CRM/Contribute/Form/Contribution.tpl,{$paneValue.id}
templates/CRM/Contribute/Form/Contribution.tpl,{$paneValue.id}
templates/CRM/Contribute/Form/Contribution.tpl,{$paneName}
templates/CRM/Contribute/Form/Contribution.tpl,{$paneValue.id}
templates/CRM/Contribute/Form/Contribution.tpl,{$form.formClass}
templates/CRM/Contribute/Form/Contribution.tpl,{$cancelInfo_show_ids}
templates/CRM/Contribute/Form/Contribution.tpl,{$config->monetaryThousandSeparator}
templates/CRM/Contribute/Form/Contribution.tpl,{$config->monetaryDecimalPoint}
templates/CRM/Contribute/Form/Contribution.tpl,{$freezeFinancialType}
templates/CRM/Contribute/Form/Contribution.tpl,{$taxRates}
templates/CRM/Contribute/Form/Contribution.tpl,{$taxTerm}
templates/CRM/Contribute/Form/Contribution.tpl,{$currencies}
templates/CRM/Contribute/Form/Contribution.tpl,{$totalTaxAmount}
templates/CRM/Contribute/Form/ContributionCharts.tpl,{$form.select_year.label}
templates/CRM/Contribute/Form/ContributionCharts.tpl,{$form.select_year.html}
templates/CRM/Contribute/Form/ContributionCharts.tpl,{$form.chart_type.label}
templates/CRM/Contribute/Form/ContributionCharts.tpl,{$form.chart_type.html}
templates/CRM/Contribute/Form/ContributionCharts.tpl,{$chartData}
templates/CRM/Contribute/Form/ContributionPage/AddProduct.tpl,{$form.product_id.label}
templates/CRM/Contribute/Form/ContributionPage/AddProduct.tpl,{$form.product_id.html}
templates/CRM/Contribute/Form/ContributionPage/AddProduct.tpl,{$form.financial_type_id.label}
templates/CRM/Contribute/Form/ContributionPage/AddProduct.tpl,{$form.financial_type_id.html}
templates/CRM/Contribute/Form/ContributionPage/AddProduct.tpl,{$form.weight.label}
templates/CRM/Contribute/Form/ContributionPage/AddProduct.tpl,{$form.weight.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_monetary.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_monetary.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.currency.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.currency.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.payment_processor.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.payment_processor.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_pay_later.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_pay_later.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.pay_later_text.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.pay_later_text.html|crmAddClass:big}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.pay_later_receipt.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.pay_later_receipt.html|crmAddClass:big}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_billing_required.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_billing_required.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.amount_block_is_active.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.amount_block_is_active.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.price_set_id.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.price_set_id.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_recur.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_recur.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.recur_frequency_unit.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.recur_frequency_unit.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_recur_interval.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_recur_interval.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_recur_installments.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_recur_installments.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.pledge_calendar_date.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.pledge_calendar_month.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_pledge_active.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_pledge_active.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.pledge_frequency_unit.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.pledge_frequency_unit.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_pledge_interval.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_pledge_interval.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.initial_reminder_day.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.initial_reminder_day.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.max_reminders.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.max_reminders.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.additional_reminder_day.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.additional_reminder_day.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.adjust_recur_start_date.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.adjust_recur_start_date.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.pledge_default_toggle.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.pledge_default_toggle.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_pledge_start_date_visible.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_pledge_start_date_visible.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_pledge_start_date_editable.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_pledge_start_date_editable.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.amount_label.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.amount_label.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_allow_other_amount.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.is_allow_other_amount.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.min_amount.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.min_amount.html|crmMoney}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.max_amount.label}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.max_amount.html|crmMoney}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.default.0.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.label.$idx.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.value.$idx.html|crmMoney}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$form.default.$idx.html}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$index}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$futurePaymentProcessor}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$index}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$paymentProcessor}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$priceSetID}
templates/CRM/Contribute/Form/ContributionPage/Amount.tpl,{$priceSetID}
templates/CRM/Contribute/Form/ContributionPage/Custom.tpl,{$form.custom_pre_id.label}
templates/CRM/Contribute/Form/ContributionPage/Custom.tpl,{$form.custom_pre_id.html}
templates/CRM/Contribute/Form/ContributionPage/Custom.tpl,{$form.custom_post_id.label}
templates/CRM/Contribute/Form/ContributionPage/Custom.tpl,{$form.custom_post_id.html}
templates/CRM/Contribute/Form/ContributionPage/Premium.tpl,{$form.premiums_active.label}
templates/CRM/Contribute/Form/ContributionPage/Premium.tpl,{$form.premiums_active.html}
templates/CRM/Contribute/Form/ContributionPage/Premium.tpl,{$form.premiums_intro_title.label}
templates/CRM/Contribute/Form/ContributionPage/Premium.tpl,{$form.premiums_intro_title.html}
templates/CRM/Contribute/Form/ContributionPage/Premium.tpl,{$form.premiums_intro_text.label}
templates/CRM/Contribute/Form/ContributionPage/Premium.tpl,{$form.premiums_intro_text.html}
templates/CRM/Contribute/Form/ContributionPage/Premium.tpl,{$form.premiums_contact_email.label}
templates/CRM/Contribute/Form/ContributionPage/Premium.tpl,{$form.premiums_contact_email.html}
templates/CRM/Contribute/Form/ContributionPage/Premium.tpl,{$form.premiums_contact_phone.label}
templates/CRM/Contribute/Form/ContributionPage/Premium.tpl,{$form.premiums_contact_phone.html}
templates/CRM/Contribute/Form/ContributionPage/Premium.tpl,{$form.premiums_display_min_contribution.label}
templates/CRM/Contribute/Form/ContributionPage/Premium.tpl,{$form.premiums_display_min_contribution.html}
templates/CRM/Contribute/Form/ContributionPage/Premium.tpl,{$form.premiums_nothankyou_label.label}
templates/CRM/Contribute/Form/ContributionPage/Premium.tpl,{$form.premiums_nothankyou_label.html}
templates/CRM/Contribute/Form/ContributionPage/Premium.tpl,{$form.premiums_nothankyou_position.label}
templates/CRM/Contribute/Form/ContributionPage/Premium.tpl,{$form.premiums_nothankyou_position.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.title.label}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.title.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.contribution_page_frontend_title.label}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.contribution_page_frontend_title.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.financial_type_id.label}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.financial_type_id.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.is_organization.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.is_organization.label}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.onbehalf_profile_id.label}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.onbehalf_profile_id.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.for_organization.label}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.for_organization.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.is_for_organization.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.intro_text.label}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.intro_text.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.footer_text.label}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.footer_text.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.goal_amount.label}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.goal_amount.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.start_date.label}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.start_date.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.end_date.label}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.end_date.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.honor_block_is_active.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.honor_block_is_active.label}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.honor_block_title.label}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.honor_block_title.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.honor_block_text.label}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.honor_block_text.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.soft_credit_types.label}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.soft_credit_types.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.honoree_profile.label}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.honoree_profile.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.is_confirm_enabled.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.is_confirm_enabled.label}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.is_share.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.is_share.label}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.is_active.html}
templates/CRM/Contribute/Form/ContributionPage/Settings.tpl,{$form.is_active.label}
templates/CRM/Contribute/Form/ContributionPage/ThankYou.tpl,{$form.thankyou_title.label}
templates/CRM/Contribute/Form/ContributionPage/ThankYou.tpl,{$form.thankyou_title.html}
templates/CRM/Contribute/Form/ContributionPage/ThankYou.tpl,{$form.thankyou_text.label}
templates/CRM/Contribute/Form/ContributionPage/ThankYou.tpl,{$form.thankyou_text.html}
templates/CRM/Contribute/Form/ContributionPage/ThankYou.tpl,{$form.thankyou_footer.label}
templates/CRM/Contribute/Form/ContributionPage/ThankYou.tpl,{$form.thankyou_footer.html}
templates/CRM/Contribute/Form/ContributionPage/ThankYou.tpl,{$form.is_email_receipt.html}
templates/CRM/Contribute/Form/ContributionPage/ThankYou.tpl,{$form.is_email_receipt.label}
templates/CRM/Contribute/Form/ContributionPage/ThankYou.tpl,{$form.receipt_from_name.label}
templates/CRM/Contribute/Form/ContributionPage/ThankYou.tpl,{$form.receipt_from_name.html}
templates/CRM/Contribute/Form/ContributionPage/ThankYou.tpl,{$form.receipt_from_email.label}
templates/CRM/Contribute/Form/ContributionPage/ThankYou.tpl,{$form.receipt_from_email.html}
templates/CRM/Contribute/Form/ContributionPage/ThankYou.tpl,{$form.receipt_text.label}
templates/CRM/Contribute/Form/ContributionPage/ThankYou.tpl,{$form.receipt_text.html}
templates/CRM/Contribute/Form/ContributionPage/ThankYou.tpl,{$form.cc_receipt.label}
templates/CRM/Contribute/Form/ContributionPage/ThankYou.tpl,{$form.cc_receipt.html}
templates/CRM/Contribute/Form/ContributionPage/ThankYou.tpl,{$form.bcc_receipt.label}
templates/CRM/Contribute/Form/ContributionPage/ThankYou.tpl,{$form.bcc_receipt.html}
templates/CRM/Contribute/Form/ContributionPage/Widget.tpl,{$form.is_active.html}
templates/CRM/Contribute/Form/ContributionPage/Widget.tpl,{$form.is_active.label}
templates/CRM/Contribute/Form/ContributionPage/Widget.tpl,{$form.title.label}
templates/CRM/Contribute/Form/ContributionPage/Widget.tpl,{$form.title.html}
templates/CRM/Contribute/Form/ContributionPage/Widget.tpl,{$form.url_logo.label}
templates/CRM/Contribute/Form/ContributionPage/Widget.tpl,{$form.url_logo.html}
templates/CRM/Contribute/Form/ContributionPage/Widget.tpl,{$form.button_title.label}
templates/CRM/Contribute/Form/ContributionPage/Widget.tpl,{$form.button_title.html}
templates/CRM/Contribute/Form/ContributionPage/Widget.tpl,{$form.about.label}
templates/CRM/Contribute/Form/ContributionPage/Widget.tpl,{$form.about.html}
templates/CRM/Contribute/Form/ContributionPage/Widget.tpl,{$form._qf_Widget_refresh.html}
templates/CRM/Contribute/Form/ContributionPage/Widget.tpl,{$form.$fieldName.label}
templates/CRM/Contribute/Form/ContributionPage/Widget.tpl,{$form.$fieldName.html}
templates/CRM/Contribute/Form/ContributionPage/Widget.tpl,{$form._qf_Widget_refresh.html}
templates/CRM/Contribute/Form/ContributionView.tpl,{$paymentButtonName}
templates/CRM/Contribute/Form/ContributionView.tpl,{$displayName}
templates/CRM/Contribute/Form/ContributionView.tpl,{$financial_type}
templates/CRM/Contribute/Form/ContributionView.tpl,{$recur_installments}
templates/CRM/Contribute/Form/ContributionView.tpl,{$recur_frequency_interval}
templates/CRM/Contribute/Form/ContributionView.tpl,{$recur_frequency_unit}
templates/CRM/Contribute/Form/ContributionView.tpl,{$total_amount|crmMoney:$currency}
templates/CRM/Contribute/Form/ContributionView.tpl,{$recur_installments}
templates/CRM/Contribute/Form/ContributionView.tpl,{$recur_frequency_interval}
templates/CRM/Contribute/Form/ContributionView.tpl,{$recur_frequency_unit}
templates/CRM/Contribute/Form/ContributionView.tpl,{$tax_amount|crmMoney:$currency}
templates/CRM/Contribute/Form/ContributionView.tpl,{$non_deductible_amount|crmMoney:$currency}
templates/CRM/Contribute/Form/ContributionView.tpl,{$fee_amount|crmMoney:$currency}
templates/CRM/Contribute/Form/ContributionView.tpl,{$net_amount|crmMoney:$currency}
templates/CRM/Contribute/Form/ContributionView.tpl,"{$revenue_recognition_date|crmDate:""%B, %Y""}"
templates/CRM/Contribute/Form/ContributionView.tpl,{$receive_date|crmDate}
templates/CRM/Contribute/Form/ContributionView.tpl,{$to_financial_account}
templates/CRM/Contribute/Form/ContributionView.tpl,{$contribution_status}
templates/CRM/Contribute/Form/ContributionView.tpl,{$cancel_date|crmDate}
templates/CRM/Contribute/Form/ContributionView.tpl,{$cancel_reason}
templates/CRM/Contribute/Form/ContributionView.tpl,{$refund_trxn_id}
templates/CRM/Contribute/Form/ContributionView.tpl,{$payment_instrument}
templates/CRM/Contribute/Form/ContributionView.tpl,{$payment_processor_name}
templates/CRM/Contribute/Form/ContributionView.tpl,{$check_number}
templates/CRM/Contribute/Form/ContributionView.tpl,{$source}
templates/CRM/Contribute/Form/ContributionView.tpl,{$campaign}
templates/CRM/Contribute/Form/ContributionView.tpl,{$contribution_page_title}
templates/CRM/Contribute/Form/ContributionView.tpl,{$receipt_date|crmDate}
templates/CRM/Contribute/Form/ContributionView.tpl,{$rec}
templates/CRM/Contribute/Form/ContributionView.tpl,{$trxn_id}
templates/CRM/Contribute/Form/ContributionView.tpl,{$invoice_number}
templates/CRM/Contribute/Form/ContributionView.tpl,{$invoice_id}
templates/CRM/Contribute/Form/ContributionView.tpl,{$thankyou_date|crmDate}
templates/CRM/Contribute/Form/ContributionView.tpl,{$softCont.contact_name}
templates/CRM/Contribute/Form/ContributionView.tpl,{$softCont.amount|crmMoney:$currency}
templates/CRM/Contribute/Form/ContributionView.tpl,{$softCont.soft_credit_type_label}
templates/CRM/Contribute/Form/ContributionView.tpl,{$premium}
templates/CRM/Contribute/Form/ContributionView.tpl,{$option}
templates/CRM/Contribute/Form/ContributionView.tpl,{$fulfilled|truncate:10:''|crmDate}
templates/CRM/Contribute/Form/ContributionView.tpl,{$pcp_title}
templates/CRM/Contribute/Form/ContributionView.tpl,{$pcp_soft_credit_to_name}
templates/CRM/Contribute/Form/ContributionView.tpl,{$pcp_roll_nickname}
templates/CRM/Contribute/Form/ContributionView.tpl,{$pcp_personal_note}
templates/CRM/Contribute/Form/ContributionView.tpl,{$billing_address|nl2br}
templates/CRM/Contribute/Form/ContributionView.tpl,{$paymentButtonName}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.name.label}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.name.html}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.description.label}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.description.html}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.sku.label}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.sku.html}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.imageOption.label}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$thumbnailUrl}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.imageOption.image.html}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.uploadFile.html}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.imageOption.thumbnail.html}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.imageUrl.label}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.imageUrl.html|crmAddClass:huge}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.thumbnailUrl.label}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.thumbnailUrl.html|crmAddClass:huge}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.imageOption.default_image.html}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.imageOption.noImage.html}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.min_contribution.label}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.min_contribution.html|crmMoney}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.price.label}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.price.html|crmMoney}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.cost.label}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.cost.html|crmMoney}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.financial_type_id.label}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.financial_type_id.html}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.options.label}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.options.html}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.is_active.label}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.is_active.html}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.period_type.label}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.period_type.html}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.fixed_period_start_day.label}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.fixed_period_start_day.html}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.duration_interval.label}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.duration_interval.html}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.duration_unit.html}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.frequency_interval.label}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.frequency_interval.html}
templates/CRM/Contribute/Form/ManagePremiums.tpl,{$form.frequency_unit.html}
templates/CRM/Contribute/Form/PaymentInfoBlock.tpl,{$payment.total_amount|crmMoney:$payment.currency}
templates/CRM/Contribute/Form/PaymentInfoBlock.tpl,{$payment.financial_type}
templates/CRM/Contribute/Form/PaymentInfoBlock.tpl,{$payment.payment_instrument}
templates/CRM/Contribute/Form/PaymentInfoBlock.tpl,{$payment.check_number}
templates/CRM/Contribute/Form/PaymentInfoBlock.tpl,{$payment.receive_date|crmDate}
templates/CRM/Contribute/Form/PaymentInfoBlock.tpl,{$payment.trxn_id}
templates/CRM/Contribute/Form/PaymentInfoBlock.tpl,{$payment.status}
templates/CRM/Contribute/Form/PaymentInfoBlock.tpl,{$payment.action}
templates/CRM/Contribute/Form/PaymentInfoBlock.tpl,{$paymentLink.url}
templates/CRM/Contribute/Form/PaymentInfoBlock.tpl,{$paymentLink.title}
templates/CRM/Contribute/Form/PaymentInstrument.tpl,{$form.name.label}
templates/CRM/Contribute/Form/PaymentInstrument.tpl,{$form.name.html}
templates/CRM/Contribute/Form/PaymentInstrument.tpl,{$form.description.label}
templates/CRM/Contribute/Form/PaymentInstrument.tpl,{$form.description.html}
templates/CRM/Contribute/Form/PaymentInstrument.tpl,{$form.is_active.label}
templates/CRM/Contribute/Form/PaymentInstrument.tpl,{$form.is_active.html}
templates/CRM/Contribute/Form/PCP/Campaign.tpl,{$form.title.label}
templates/CRM/Contribute/Form/PCP/Campaign.tpl,{$form.title.html|crmAddClass:big}
templates/CRM/Contribute/Form/PCP/Campaign.tpl,{$form.intro_text.label}
templates/CRM/Contribute/Form/PCP/Campaign.tpl,{$form.intro_text.html|crmAddClass:big}
templates/CRM/Contribute/Form/PCP/Campaign.tpl,{$form.goal_amount.label}
templates/CRM/Contribute/Form/PCP/Campaign.tpl,{$form.goal_amount.html|crmAddClass:six}
templates/CRM/Contribute/Form/PCP/Campaign.tpl,{$form.is_thermometer.label}
templates/CRM/Contribute/Form/PCP/Campaign.tpl,{$form.is_thermometer.html}
templates/CRM/Contribute/Form/PCP/Campaign.tpl,{$form.donate_link_text.label}
templates/CRM/Contribute/Form/PCP/Campaign.tpl,{$form.donate_link_text.html}
templates/CRM/Contribute/Form/PCP/Campaign.tpl,{$form.page_text.label}
templates/CRM/Contribute/Form/PCP/Campaign.tpl,{$form.page_text.html|crmAddClass:huge}
templates/CRM/Contribute/Form/PCP/Campaign.tpl,{$form.is_honor_roll.label}
templates/CRM/Contribute/Form/PCP/Campaign.tpl,{$form.is_honor_roll.html}
templates/CRM/Contribute/Form/PCP/Campaign.tpl,{$form.is_active.label}
templates/CRM/Contribute/Form/PCP/Campaign.tpl,{$form.is_active.html}
templates/CRM/Contribute/Form/PCP/Delete.tpl,{$form.buttons.html}
templates/CRM/Contribute/Form/PCP/PCP.tpl,{$form.status_id.label}
templates/CRM/Contribute/Form/PCP/PCP.tpl,{$form.status_id.html}
templates/CRM/Contribute/Form/PCP/PCP.tpl,{$form.contibution_page_id.label}
templates/CRM/Contribute/Form/PCP/PCP.tpl,{$form.contibution_page_id.html}
templates/CRM/Contribute/Form/PCP/PCP.tpl,{$form.event_id.label}
templates/CRM/Contribute/Form/PCP/PCP.tpl,{$form.event_id.html}
templates/CRM/Contribute/Form/PCP/PCP.tpl,{$form.buttons.html}
templates/CRM/Contribute/Form/PCP.js.tpl,{$form.formClass}
templates/CRM/Contribute/Form/Preview.tpl,{$form.intro_text.label}
templates/CRM/Contribute/Form/Preview.tpl,{$form.intro_text.html}
templates/CRM/Contribute/Form/Preview.tpl,{$form.amount.label}
templates/CRM/Contribute/Form/Preview.tpl,{$form.amount.html}
templates/CRM/Contribute/Form/Preview.tpl,{$form.amount_other.label}
templates/CRM/Contribute/Form/Preview.tpl,{$form.amount_other.html}
templates/CRM/Contribute/Form/Preview.tpl,{$form.email.label}
templates/CRM/Contribute/Form/Preview.tpl,{$form.email.html}
templates/CRM/Contribute/Form/Preview.tpl,{$form._qf_Preview_next_express.html}
templates/CRM/Contribute/Form/Preview.tpl,{$form.first_name.label}
templates/CRM/Contribute/Form/Preview.tpl,{$form.first_name.html}
templates/CRM/Contribute/Form/Preview.tpl,{$form.middle_name.label}
templates/CRM/Contribute/Form/Preview.tpl,{$form.middle_name.html}
templates/CRM/Contribute/Form/Preview.tpl,{$form.last_name.label}
templates/CRM/Contribute/Form/Preview.tpl,{$form.last_name.html}
templates/CRM/Contribute/Form/Preview.tpl,{$form.street1.label}
templates/CRM/Contribute/Form/Preview.tpl,{$form.street1.html}
templates/CRM/Contribute/Form/Preview.tpl,{$form.city.label}
templates/CRM/Contribute/Form/Preview.tpl,{$form.city.html}
templates/CRM/Contribute/Form/Preview.tpl,{$form.state_province.label}
templates/CRM/Contribute/Form/Preview.tpl,{$form.state_province.html}
templates/CRM/Contribute/Form/Preview.tpl,{$form.postal_code.label}
templates/CRM/Contribute/Form/Preview.tpl,{$form.postal_code.html}
templates/CRM/Contribute/Form/Preview.tpl,{$form.country_id.label}
templates/CRM/Contribute/Form/Preview.tpl,{$form.country_id.html}
templates/CRM/Contribute/Form/Preview.tpl,{$form.credit_card_number.label}
templates/CRM/Contribute/Form/Preview.tpl,{$form.credit_card_number.html}
templates/CRM/Contribute/Form/Preview.tpl,{$form.cvv2.label}
templates/CRM/Contribute/Form/Preview.tpl,{$form.cvv2.html}
templates/CRM/Contribute/Form/Preview.tpl,{$form.credit_card_type.label}
templates/CRM/Contribute/Form/Preview.tpl,{$form.credit_card_type.html}
templates/CRM/Contribute/Form/Preview.tpl,{$form.credit_card_exp_date.label}
templates/CRM/Contribute/Form/Preview.tpl,{$form.credit_card_exp_date.html}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_amount_low.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_amount_low.html}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_amount_high.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_amount_high.html}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_status_id.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_status_id.html}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_currency_type.html|crmAddClass:twenty}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_batch_id.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_batch_id.html}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_payment_instrument_id.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_payment_instrument_id.html|crmAddClass:twenty}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_check_number.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_check_number.html}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.financial_trxn_card_type_id.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.financial_trxn_card_type_id.html}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.financial_trxn_pan_truncation.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.financial_trxn_pan_truncation.html}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_trxn_id.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_trxn_id.html}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_or_softcredits.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_or_softcredits.html}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_soft_credit_type_id.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_soft_credit_type_id.html|crmAddClass:twenty}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.invoice_number.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.invoice_number.html}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_thankyou_date_is_not_null.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_thankyou_date_is_not_null.html}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_receipt_date_is_not_null.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_receipt_date_is_not_null.html}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_test.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_test.html}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_pay_later.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_pay_later.html}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_recurring.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_recurring.html}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.financial_type_id.html|crmAddClass:twenty}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_page_id.html|crmAddClass:twenty}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_source.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_source.html|crmAddClass:twenty}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_product_id.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_product_id.html|crmAddClass:twenty}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_pcp_made_through_id.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_pcp_made_through_id.html}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_pcp_display_in_roll.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.contribution_pcp_display_in_roll.html}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.cancel_reason.label}
templates/CRM/Contribute/Form/Search/Common.tpl,{$form.cancel_reason.html}
templates/CRM/Contribute/Form/Search/ContributionRecur.tpl,{$form.contribution_recur_payment_made.html}
templates/CRM/Contribute/Form/Search/ContributionRecur.tpl,{$form.contribution_recur_start_date_relative.label}
templates/CRM/Contribute/Form/Search/ContributionRecur.tpl,{$form.contribution_recur_end_date_relative.label}
templates/CRM/Contribute/Form/Search/ContributionRecur.tpl,{$form.contribution_recur_modified_date_relative.label}
templates/CRM/Contribute/Form/Search/ContributionRecur.tpl,{$form.contribution_recur_next_sched_contribution_date_relative.label}
templates/CRM/Contribute/Form/Search/ContributionRecur.tpl,{$form.contribution_recur_failure_retry_date_relative.label}
templates/CRM/Contribute/Form/Search/ContributionRecur.tpl,{$form.contribution_recur_cancel_date_relative.label}
templates/CRM/Contribute/Form/Search/ContributionRecur.tpl,{$form.contribution_recur_contribution_status_id.html|crmAddClass:twenty}
templates/CRM/Contribute/Form/Search/ContributionRecur.tpl,{$form.contribution_recur_payment_processor_id.html}
templates/CRM/Contribute/Form/Search/ContributionRecur.tpl,{$form.contribution_recur_processor_id.html}
templates/CRM/Contribute/Form/Search/ContributionRecur.tpl,{$form.contribution_recur_trxn_id.html}
templates/CRM/Contribute/Form/Search.tpl,{$form.buttons.html}
templates/CRM/Contribute/Form/SearchContribution.tpl,{$form.title.html}
templates/CRM/Contribute/Form/SearchContribution.tpl,{$contribution_val.html}
templates/CRM/Contribute/Form/Selector.tpl,{$form.toggleSelect.html}
templates/CRM/Contribute/Form/Selector.tpl,{$sort->_response.$key.link}
templates/CRM/Contribute/Form/Selector.tpl,{$header.name}
templates/CRM/Contribute/Form/Selector.tpl,{$row.contribution_id}
templates/CRM/Contribute/Form/Selector.tpl,{$row.contribution_id}
templates/CRM/Contribute/Form/Selector.tpl,{$form.$cbName.html}
templates/CRM/Contribute/Form/Selector.tpl,{$row.contact_type}
templates/CRM/Contribute/Form/Selector.tpl,{$row.sort_name}
templates/CRM/Contribute/Form/Selector.tpl,{$row.total_amount|crmMoney:$row.currency}
templates/CRM/Contribute/Form/Selector.tpl,{$row.amount_level}
templates/CRM/Contribute/Form/Selector.tpl,{$row.contribution_status}
templates/CRM/Contribute/Form/Selector.tpl,{$row.cancel_date|crmDate}
templates/CRM/Contribute/Form/Selector.tpl,{$columnName}
templates/CRM/Contribute/Form/Selector.tpl,{$row.$columnName|crmDate}
templates/CRM/Contribute/Form/Selector.tpl,{$columnName}
templates/CRM/Contribute/Form/Selector.tpl,{$columnName}
templates/CRM/Contribute/Form/Selector.tpl,{$row.columnName}
templates/CRM/Contribute/Form/Selector.tpl,{$row.$columnName}
templates/CRM/Contribute/Form/Selector.tpl,{$row.contribution_soft_credit_name}
templates/CRM/Contribute/Form/Selector.tpl,{$row.contribution_soft_credit_type}
templates/CRM/Contribute/Form/Selector.tpl,{$row.action|replace:'xx':$row.contribution_id}
templates/CRM/Contribute/Form/SoftCredit.tpl,{$rowNumber}
templates/CRM/Contribute/Form/SoftCredit.tpl,{$form.soft_credit_contact_id.$rowNumber.label}
templates/CRM/Contribute/Form/SoftCredit.tpl,{$form.soft_credit_contact_id.$rowNumber.html|crmAddClass:twenty}
templates/CRM/Contribute/Form/SoftCredit.tpl,{$form.soft_credit_amount.$rowNumber.label}
templates/CRM/Contribute/Form/SoftCredit.tpl,{$form.soft_credit_amount.$rowNumber.html|crmAddClass:eight}
templates/CRM/Contribute/Form/SoftCredit.tpl,{$form.soft_credit_type.$rowNumber.label}
templates/CRM/Contribute/Form/SoftCredit.tpl,{$form.soft_credit_type.$rowNumber.html}
templates/CRM/Contribute/Form/SoftCredit.tpl,{$form.formClass}
templates/CRM/Contribute/Form/SoftCredit.tpl,{$config->monetaryThousandSeparator|json_encode}
templates/CRM/Contribute/Form/Task/Batch.tpl,{$fTitle}
templates/CRM/Contribute/Form/Task/Batch.tpl,{$config->resourceBase}
templates/CRM/Contribute/Form/Task/Batch.tpl,{$field.name}
templates/CRM/Contribute/Form/Task/Batch.tpl,{$field.title}
templates/CRM/Contribute/Form/Task/Batch.tpl,{$cid}
templates/CRM/Contribute/Form/Task/Batch.tpl,{$contactDetails.$cid.$fName}
templates/CRM/Contribute/Form/Task/Batch.tpl,{$form.field.$cid.$n.html}
templates/CRM/Contribute/Form/Task/Batch.tpl,{$form._qf_Batch_refresh.html}
templates/CRM/Contribute/Form/Task/Batch.tpl,{$form.buttons.html}
templates/CRM/Contribute/Form/Task/Delete.tpl,{$form.buttons.html}
templates/CRM/Contribute/Form/Task/Invoice.tpl,{$form.output.email_invoice.label}
templates/CRM/Contribute/Form/Task/Invoice.tpl,{$form.output.email_invoice.html}
templates/CRM/Contribute/Form/Task/Invoice.tpl,{$form.from_email_address.label}
templates/CRM/Contribute/Form/Task/Invoice.tpl,{$form.from_email_address.html}
templates/CRM/Contribute/Form/Task/Invoice.tpl,{$form.email_comment.label}
templates/CRM/Contribute/Form/Task/Invoice.tpl,{$form.email_comment.html}
templates/CRM/Contribute/Form/Task/Invoice.tpl,{$form.output.pdf_invoice.label}
templates/CRM/Contribute/Form/Task/Invoice.tpl,{$form.output.pdf_invoice.html}
templates/CRM/Contribute/Form/Task/Invoice.tpl,{$form.pdf_format_id.label}
templates/CRM/Contribute/Form/Task/Invoice.tpl,{$form.pdf_format_id.html}
templates/CRM/Contribute/Form/Task/Invoice.tpl,{$form.buttons.html}
templates/CRM/Contribute/Form/Task/PDF.tpl,{$form.output.email_receipt.html}
templates/CRM/Contribute/Form/Task/PDF.tpl,{$form.from_email_address.label}
templates/CRM/Contribute/Form/Task/PDF.tpl,{$form.from_email_address.html}
templates/CRM/Contribute/Form/Task/PDF.tpl,{$form.output.pdf_receipt.html}
templates/CRM/Contribute/Form/Task/PDF.tpl,{$form.pdf_format_id.html}
templates/CRM/Contribute/Form/Task/PDF.tpl,{$form.pdf_format_id.label}
templates/CRM/Contribute/Form/Task/PDF.tpl,{$form.receipt_update.html}
templates/CRM/Contribute/Form/Task/PDF.tpl,{$form.receipt_update.label}
templates/CRM/Contribute/Form/Task/PDF.tpl,{$form.override_privacy.html}
templates/CRM/Contribute/Form/Task/PDF.tpl,{$form.override_privacy.label}
templates/CRM/Contribute/Form/Task/PDF.tpl,{$form.buttons.html}
templates/CRM/Contribute/Form/Task/PDFLetter.tpl,{$form.more_options_header.html}
templates/CRM/Contribute/Form/Task/PDFLetter.tpl,{$form.thankyou_update.html}
templates/CRM/Contribute/Form/Task/PDFLetter.tpl,{$form.thankyou_update.label}
templates/CRM/Contribute/Form/Task/PDFLetter.tpl,{$form.receipt_update.html}
templates/CRM/Contribute/Form/Task/PDFLetter.tpl,{$form.receipt_update.label}
templates/CRM/Contribute/Form/Task/PDFLetter.tpl,{$form.group_by.label}
templates/CRM/Contribute/Form/Task/PDFLetter.tpl,{$form.group_by.html}
templates/CRM/Contribute/Form/Task/PDFLetter.tpl,{$form.group_by_separator.label}
templates/CRM/Contribute/Form/Task/PDFLetter.tpl,{$form.group_by_separator.html}
templates/CRM/Contribute/Form/Task/PDFLetter.tpl,{$form.email_options.label}
templates/CRM/Contribute/Form/Task/PDFLetter.tpl,{$form.email_options.html}
templates/CRM/Contribute/Form/Task/PDFLetter.tpl,{$form.from_email_address.label}
templates/CRM/Contribute/Form/Task/PDFLetter.tpl,{$form.from_email_address.html}
templates/CRM/Contribute/Form/Task/PickProfile.tpl,{$form.uf_group_id.label}
templates/CRM/Contribute/Form/Task/PickProfile.tpl,{$form.uf_group_id.html}
templates/CRM/Contribute/Form/Task/PickProfile.tpl,{$form.buttons.html}
templates/CRM/Contribute/Form/Task/Print.tpl,{$form.buttons.html}
templates/CRM/Contribute/Form/Task/Print.tpl,{$row.sort_name}
templates/CRM/Contribute/Form/Task/Print.tpl,{$row.total_amount|crmMoney}
templates/CRM/Contribute/Form/Task/Print.tpl,{$row.financial_type}
templates/CRM/Contribute/Form/Task/Print.tpl,{$row.financial_type}
templates/CRM/Contribute/Form/Task/Print.tpl,{$row.financial_type}
templates/CRM/Contribute/Form/Task/Print.tpl,{$row.contribution_source}
templates/CRM/Contribute/Form/Task/Print.tpl,{$row.receive_date|truncate:10:''|crmDate}
templates/CRM/Contribute/Form/Task/Print.tpl,{$row.thankyou_date|truncate:10:''|crmDate}
templates/CRM/Contribute/Form/Task/Print.tpl,{$row.contribution_status_id}
templates/CRM/Contribute/Form/Task/Print.tpl,{$row.contribution_status_id}
templates/CRM/Contribute/Form/Task/Print.tpl,{$row.cancel_date|truncate:10:''|crmDate}
templates/CRM/Contribute/Form/Task/Print.tpl,{$row.product_name}
templates/CRM/Contribute/Form/Task/Print.tpl,{$form.buttons.html}
templates/CRM/Contribute/Form/Task/Result.tpl,{$form.buttons.html}
templates/CRM/Contribute/Form/Task/SearchTaskHookSample.tpl,{$form.buttons.html}
templates/CRM/Contribute/Form/Task/SearchTaskHookSample.tpl,{$row.display_name}
templates/CRM/Contribute/Form/Task/SearchTaskHookSample.tpl,{$row.amount}
templates/CRM/Contribute/Form/Task/SearchTaskHookSample.tpl,{$row.source}
templates/CRM/Contribute/Form/Task/SearchTaskHookSample.tpl,{$row.receive_date}
templates/CRM/Contribute/Form/Task/SearchTaskHookSample.tpl,{$form.buttons.html}
templates/CRM/Contribute/Form/Task/Status.tpl,{$form.contribution_status_id.label}
templates/CRM/Contribute/Form/Task/Status.tpl,{$form.contribution_status_id.html}
templates/CRM/Contribute/Form/Task/Status.tpl,{$row.display_name}
templates/CRM/Contribute/Form/Task/Status.tpl,{$row.amount|crmMoney}
templates/CRM/Contribute/Form/Task/Status.tpl,{$row.source}
templates/CRM/Contribute/Form/Task/Status.tpl,{$form.$element_name.html}
templates/CRM/Contribute/Form/Task/Status.tpl,{$form.$element_name.html}
templates/CRM/Contribute/Form/Task/Status.tpl,{$form.$element_name.html|crmAddClass:four}
templates/CRM/Contribute/Form/Task/Status.tpl,{$form.$element_name.html|crmAddClass:eight}
templates/CRM/Contribute/Form/Task/Status.tpl,{$form.$element_name.html}
templates/CRM/Contribute/Form/Task/Status.tpl,{$form.buttons.html}
templates/CRM/Contribute/Form/Task.tpl,{$row.displayName}
templates/CRM/Contribute/Form/UpdateBilling.tpl,{$membershipType}
templates/CRM/Contribute/Form/UpdateSubscription.tpl,{$changeHelpText}
templates/CRM/Contribute/Form/UpdateSubscription.tpl,{$recurMembership.membership_name}
templates/CRM/Contribute/Form/UpdateSubscription.tpl,{$form.amount.label}
templates/CRM/Contribute/Form/UpdateSubscription.tpl,{$form.currency.html|crmAddClass:eight}
templates/CRM/Contribute/Form/UpdateSubscription.tpl,{$form.amount.html|crmAddClass:eight}
templates/CRM/Contribute/Form/UpdateSubscription.tpl,{$frequency_interval}
templates/CRM/Contribute/Form/UpdateSubscription.tpl,{$frequency_unit}
templates/CRM/Contribute/Form/UpdateSubscription.tpl,{$form.installments.label}
templates/CRM/Contribute/Form/UpdateSubscription.tpl,{$form.installments.html}
templates/CRM/Contribute/Form/UpdateSubscription.tpl,{$form.$field.label}
templates/CRM/Contribute/Form/UpdateSubscription.tpl,{$form.$field.html}
templates/CRM/Contribute/Form/UpdateSubscription.tpl,{$form.is_notify.label}
templates/CRM/Contribute/Form/UpdateSubscription.tpl,{$form.is_notify.html}
templates/CRM/Contribute/Form/UpdateSubscription.tpl,{$form.campaign_id.label}
templates/CRM/Contribute/Form/UpdateSubscription.tpl,{$form.campaign_id.html}
templates/CRM/Contribute/Form/UpdateSubscription.tpl,{$form.financial_type_id.label}
templates/CRM/Contribute/Form/UpdateSubscription.tpl,{$form.financial_type_id.html}
templates/CRM/Contribute/Import/Form/DataSource.tpl,{$form.uploadFile.label}
templates/CRM/Contribute/Import/Form/DataSource.tpl,{$form.uploadFile.html}
templates/CRM/Contribute/Import/Form/DataSource.tpl,{$form.skipColumnHeader.html}
templates/CRM/Contribute/Import/Form/DataSource.tpl,{$form.skipColumnHeader.label}
templates/CRM/Contribute/Import/Form/DataSource.tpl,{$form.contactType.name}
templates/CRM/Contribute/Import/Form/DataSource.tpl,{$form.contactType.label}
templates/CRM/Contribute/Import/Form/DataSource.tpl,{$form.contactType.name}
templates/CRM/Contribute/Import/Form/DataSource.tpl,{$form.contactType.html}
templates/CRM/Contribute/Import/Form/DataSource.tpl,{$form.onDuplicate.label}
templates/CRM/Contribute/Import/Form/DataSource.tpl,{$form.onDuplicate.html}
templates/CRM/Contribute/Import/Form/DataSource.tpl,{$form.fieldSeparator.label}
templates/CRM/Contribute/Import/Form/DataSource.tpl,{$form.fieldSeparator.html}
templates/CRM/Contribute/Import/Form/DataSource.tpl,{$form.savedMapping.html}
templates/CRM/Contribute/Import/Form/MapField.tpl,{$initHideBoxes}
templates/CRM/Contribute/Import/Form/MapTable.tpl,{$dataValues[$j][$i]}
templates/CRM/Contribute/Import/Form/MapTable.tpl,{$mapper[$i]}
templates/CRM/Contribute/Import/Form/MapTable.tpl,{$softCreditFields[$i]}
templates/CRM/Contribute/Import/Form/MapTable.tpl,{$mapperSoftCreditType[$i].label}
templates/CRM/Contribute/Import/Form/MapTable.tpl,{$mapper[$i]}
templates/CRM/Contribute/Import/Form/MapTable.tpl,{$form.mapper[$i].html}
templates/CRM/Contribute/Import/Form/MapTable.tpl,{$form.updateMapping.html}
templates/CRM/Contribute/Import/Form/MapTable.tpl,{$form.updateMapping.label}
templates/CRM/Contribute/Import/Form/MapTable.tpl,{$form.saveMapping.html}
templates/CRM/Contribute/Import/Form/MapTable.tpl,{$form.saveMapping.label}
templates/CRM/Contribute/Import/Form/MapTable.tpl,{$form.saveMappingName.label}
templates/CRM/Contribute/Import/Form/MapTable.tpl,{$form.saveMappingName.html}
templates/CRM/Contribute/Import/Form/MapTable.tpl,{$form.saveMappingDesc.label}
templates/CRM/Contribute/Import/Form/MapTable.tpl,{$form.saveMappingDesc.html}
templates/CRM/Contribute/Import/Form/Preview.tpl,{$totalRowCount}
templates/CRM/Contribute/Import/Form/Preview.tpl,{$invalidRowCount}
templates/CRM/Contribute/Import/Form/Preview.tpl,{$downloadErrorRecordsUrl}
templates/CRM/Contribute/Import/Form/Preview.tpl,{$conflictRowCount}
templates/CRM/Contribute/Import/Form/Preview.tpl,{$downloadConflictRecordsUrl}
templates/CRM/Contribute/Import/Form/Preview.tpl,{$validRowCount}
templates/CRM/Contribute/Import/Form/Summary.tpl,{$dupeActionString}
templates/CRM/Contribute/Import/Form/Summary.tpl,{$totalRowCount}
templates/CRM/Contribute/Import/Form/Summary.tpl,{$invalidRowCount}
templates/CRM/Contribute/Import/Form/Summary.tpl,{$downloadErrorRecordsUrl}
templates/CRM/Contribute/Import/Form/Summary.tpl,{$validSoftCreditRowCount}
templates/CRM/Contribute/Import/Form/Summary.tpl,{$invalidSoftCreditRowCount}
templates/CRM/Contribute/Import/Form/Summary.tpl,{$downloadSoftCreditErrorRecordsUrl}
templates/CRM/Contribute/Import/Form/Summary.tpl,{$validPledgePaymentRowCount}
templates/CRM/Contribute/Import/Form/Summary.tpl,{$invalidPledgePaymentRowCount}
templates/CRM/Contribute/Import/Form/Summary.tpl,{$downloadPledgePaymentErrorRecordsUrl}
templates/CRM/Contribute/Import/Form/Summary.tpl,{$unMatchCount}
templates/CRM/Contribute/Import/Form/Summary.tpl,{$downloadMismatchRecordsUrl}
templates/CRM/Contribute/Import/Form/Summary.tpl,{$conflictRowCount}
templates/CRM/Contribute/Import/Form/Summary.tpl,{$downloadConflictRecordsUrl}
templates/CRM/Contribute/Import/Form/Summary.tpl,{$duplicateRowCount}
templates/CRM/Contribute/Import/Form/Summary.tpl,{$dupeActionString}
templates/CRM/Contribute/Import/Form/Summary.tpl,{$downloadDuplicateRecordsUrl}
templates/CRM/Contribute/Import/Form/Summary.tpl,{$validRowCount}
templates/CRM/Contribute/Page/ContributionPage.tpl,{$newPageURL}
templates/CRM/Contribute/Page/ContributionPage.tpl,{$row.id}
templates/CRM/Contribute/Page/ContributionPage.tpl,{$row.title}
templates/CRM/Contribute/Page/ContributionPage.tpl,{$row.id}
templates/CRM/Contribute/Page/ContributionPage.tpl,{$row.id}
templates/CRM/Contribute/Page/ContributionPage.tpl,{$row.campaign}
templates/CRM/Contribute/Page/ContributionPage.tpl,{$row.configureActionLinks|replace:'xx':$row.id}
templates/CRM/Contribute/Page/ContributionPage.tpl,{$row.contributionLinks|replace:'xx':$row.id}
templates/CRM/Contribute/Page/ContributionPage.tpl,{$row.onlineContributionLinks|replace:'xx':$row.id}
templates/CRM/Contribute/Page/ContributionPage.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Contribute/Page/ContributionPage.tpl,{$config->resourceBase}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$displayName}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.amount|crmMoney:$recur.currency}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.frequency_interval}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.frequency_unit}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.installments}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.contribution_status}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.start_date|crmDate}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.create_date|crmDate}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.modified_date|crmDate}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.cancel_date|crmDate}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.cancel_reason}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.end_date|crmDate}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.processor_id}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.trxn_id}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.invoice_id}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.cycle_day}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.next_sched_contribution_date|crmDate}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.failure_count}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.next_sched_contribution_date|crmDate}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.payment_processor}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.financial_type}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.campaign}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.membership_name}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$recur.id}
templates/CRM/Contribute/Page/ContributionRecur.tpl,{$contactId}
templates/CRM/Contribute/Page/ContributionRecurPayments.tpl,{$relatedContributions}
templates/CRM/Contribute/Page/ContributionRecurSelector.tpl,{$row.id}
templates/CRM/Contribute/Page/ContributionRecurSelector.tpl,{$row.amount|crmMoney:$row.currency}
templates/CRM/Contribute/Page/ContributionRecurSelector.tpl,{$row.frequency_interval}
templates/CRM/Contribute/Page/ContributionRecurSelector.tpl,{$row.frequency_unit}
templates/CRM/Contribute/Page/ContributionRecurSelector.tpl,{$row.start_date|crmDate}
templates/CRM/Contribute/Page/ContributionRecurSelector.tpl,{$row.installments}
templates/CRM/Contribute/Page/ContributionRecurSelector.tpl,{$row.contribution_status}
templates/CRM/Contribute/Page/ContributionRecurSelector.tpl,{$row.action|replace:'xx':$row.recurId}
templates/CRM/Contribute/Page/ContributionSoftTotals.tpl,{$softCreditTotals.amount}
templates/CRM/Contribute/Page/ContributionSoftTotals.tpl,{$softCreditTotals.count}
templates/CRM/Contribute/Page/ContributionSoftTotals.tpl,{$softCreditTotals.avg}
templates/CRM/Contribute/Page/ContributionSoftTotals.tpl,{$softCreditTotals.cancel.amount}
templates/CRM/Contribute/Page/ContributionTotals.tpl,{$annual.amount}
templates/CRM/Contribute/Page/ContributionTotals.tpl,{$annual.count}
templates/CRM/Contribute/Page/ContributionTotals.tpl,{$annual.avg}
templates/CRM/Contribute/Page/ContributionTotals.tpl,{$contributionSummary.total.amount}
templates/CRM/Contribute/Page/ContributionTotals.tpl,{$contributionSummary.total.count}
templates/CRM/Contribute/Page/ContributionTotals.tpl,{$contributionSummary.total.avg}
templates/CRM/Contribute/Page/ContributionTotals.tpl,{$contributionSummary.cancel.amount}
templates/CRM/Contribute/Page/ContributionType.tpl,{$row.id}
templates/CRM/Contribute/Page/ContributionType.tpl,{$row.class}
templates/CRM/Contribute/Page/ContributionType.tpl,{$row.name}
templates/CRM/Contribute/Page/ContributionType.tpl,{$row.description}
templates/CRM/Contribute/Page/ContributionType.tpl,{$row.accounting_code}
templates/CRM/Contribute/Page/ContributionType.tpl,{$row.id}
templates/CRM/Contribute/Page/ContributionType.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Contribute/Page/DashBoard.tpl,{$monthToDate.Valid.amount}
templates/CRM/Contribute/Page/DashBoard.tpl,{$monthToDate.Valid.count}
templates/CRM/Contribute/Page/DashBoard.tpl,{$monthToDate.Valid.url}
templates/CRM/Contribute/Page/DashBoard.tpl,{$yearToDate.Valid.amount}
templates/CRM/Contribute/Page/DashBoard.tpl,{$yearToDate.Valid.count}
templates/CRM/Contribute/Page/DashBoard.tpl,{$yearToDate.Valid.url}
templates/CRM/Contribute/Page/DashBoard.tpl,{$startToDate.Valid.amount}
templates/CRM/Contribute/Page/DashBoard.tpl,{$startToDate.Valid.count}
templates/CRM/Contribute/Page/DashBoard.tpl,{$startToDate.Valid.url}
templates/CRM/Contribute/Page/DashBoard.tpl,{$configPagesURL}
templates/CRM/Contribute/Page/DashBoard.tpl,{$newPageURL}
templates/CRM/Contribute/Page/ManagePremiums.tpl,{$row.id}
templates/CRM/Contribute/Page/ManagePremiums.tpl,{$row.class}
templates/CRM/Contribute/Page/ManagePremiums.tpl,{$row.name}
templates/CRM/Contribute/Page/ManagePremiums.tpl,{$row.sku}
templates/CRM/Contribute/Page/ManagePremiums.tpl,{$row.price|crmMoney}
templates/CRM/Contribute/Page/ManagePremiums.tpl,{$row.min_contribution|crmMoney}
templates/CRM/Contribute/Page/ManagePremiums.tpl,{$row.cost|crmMoney}
templates/CRM/Contribute/Page/ManagePremiums.tpl,{$row.financial_type}
templates/CRM/Contribute/Page/ManagePremiums.tpl,{$row.id}
templates/CRM/Contribute/Page/ManagePremiums.tpl,{$row.id}
templates/CRM/Contribute/Page/ManagePremiums.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Contribute/Page/ManagePremiums.tpl,{$config->resourceBase}
templates/CRM/Contribute/Page/PaymentInfo.tpl,{$totalTaxAmount}
templates/CRM/Contribute/Page/PaymentInfo.tpl,{$paymentInfo.total|crmMoney:$paymentInfo.currency}
templates/CRM/Contribute/Page/PaymentInfo.tpl,{$paymentInfo.paid|crmMoney:$paymentInfo.currency}
templates/CRM/Contribute/Page/PaymentInfo.tpl,{$paymentInfo.balance}
templates/CRM/Contribute/Page/PaymentInfo.tpl,{$paymentInfo.balance|crmMoney:$paymentInfo.currency}
templates/CRM/Contribute/Page/PaymentInfo.tpl,{$paymentButtonName}
templates/CRM/Contribute/Page/PcpUserDashboard.tpl,{$row.class}
templates/CRM/Contribute/Page/PcpUserDashboard.tpl,{$row.pcpTitle}
templates/CRM/Contribute/Page/PcpUserDashboard.tpl,{$row.pageTitle}
templates/CRM/Contribute/Page/PcpUserDashboard.tpl,{$row.end_date|truncate:10:''|crmDate}
templates/CRM/Contribute/Page/PcpUserDashboard.tpl,{$row.pcpStatus}
templates/CRM/Contribute/Page/PcpUserDashboard.tpl,{$row.action|replace:'xx':$row.pcpId}
templates/CRM/Contribute/Page/PcpUserDashboard.tpl,{$row.pageTitle}
templates/CRM/Contribute/Page/PcpUserDashboard.tpl,{$row.end_date|truncate:10:''|crmDate}
templates/CRM/Contribute/Page/PcpUserDashboard.tpl,{$row.action|replace:'xx':$row.pageId}
templates/CRM/Contribute/Page/Premium.tpl,{$row.class}
templates/CRM/Contribute/Page/Premium.tpl,{$row.product_name}
templates/CRM/Contribute/Page/Premium.tpl,{$row.sku}
templates/CRM/Contribute/Page/Premium.tpl,{$row.price|crmMoney}
templates/CRM/Contribute/Page/Premium.tpl,{$row.min_contribution|crmMoney}
templates/CRM/Contribute/Page/Premium.tpl,{$row.cost|crmMoney}
templates/CRM/Contribute/Page/Premium.tpl,{$row.financial_type}
templates/CRM/Contribute/Page/Premium.tpl,{$row.weight}
templates/CRM/Contribute/Page/Premium.tpl,{$row.action}
templates/CRM/Contribute/Page/SubscriptionStatus.tpl,{$billingName}
templates/CRM/Contribute/Page/SubscriptionStatus.tpl,{$address|nl2br}
templates/CRM/Contribute/Page/SubscriptionStatus.tpl,{$credit_card_type}
templates/CRM/Contribute/Page/SubscriptionStatus.tpl,{$credit_card_number}
templates/CRM/Contribute/Page/SubscriptionStatus.tpl,{$credit_card_exp_date|truncate:7:''|crmDate}
templates/CRM/Contribute/Page/Tab.tpl,{$tabCount}
templates/CRM/Contribute/Page/Tab.tpl,{$contributionRecurCount}
templates/CRM/Contribute/Page/Tab.tpl,{$newContribURL}
templates/CRM/Contribute/Page/Tab.tpl,{$newCreditURL}
templates/CRM/Contribute/Page/Tab.tpl,{$newContribURL}
templates/CRM/Contribute/Page/Tab.tpl,{$newCreditURL}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$row.contribution_id}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$row.total_amount|crmMoney:$row.currency}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$row.amount_level}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$row.financial_type}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$row.receive_date|truncate:10:''|crmDate}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$row.receipt_date|truncate:10:''|crmDate}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$row.contribution_status}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$button.class}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$button.url}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$button.label}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$row.honorId}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$row.display_name}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$row.amount}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$row.honor_type}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$row.type}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$row.receive_date|truncate:10:''|crmDate}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$row.receipt_date|truncate:10:''|crmDate}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$row.contribution_status}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$recurRows.$id.amount|crmMoney}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$recurRows.$id.frequency_interval}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$recurRows.$id.frequency_unit}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$recurRows.$id.installments}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$recurRows.$id.recur_status}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$recurRows.$id.link}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$recurRows.$id.completed}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$recurRows.$id.installments}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$recurRows.$id.installments}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$recurRows.$id.create_date|crmDate}
templates/CRM/Contribute/Page/UserDashboard.tpl,{$recurRows.$id.action|replace:'xx':$recurRows.id}
templates/CRM/Contribute/Page/Widget.tpl,{$form.color_main.value}
templates/CRM/Contribute/Page/Widget.tpl,{$form.color_bg.value}
templates/CRM/Contribute/Page/Widget.tpl,{$form.color_title.value}
templates/CRM/Contribute/Page/Widget.tpl,{$form.color_main_bg.value}
templates/CRM/Contribute/Page/Widget.tpl,{$form.color_bar.value}
templates/CRM/Contribute/Page/Widget.tpl,{$form.color_button.value}
templates/CRM/Contribute/Page/Widget.tpl,{$form.color_about_link.value}
templates/CRM/Contribute/Page/Widget.tpl,{$form.color_main_text.value}
templates/CRM/Contribute/Page/Widget.tpl,{$form.color_homepage_link.value}
templates/CRM/Contribute/Page/Widget.tpl,{$cpageId}
templates/CRM/Contribute/Page/Widget.tpl,{$cpageId}
templates/CRM/Contribute/Page/Widget.tpl,{$cpageId}
templates/CRM/Contribute/Page/Widget.tpl,{$cpageId}
templates/CRM/Contribute/Page/Widget.tpl,{$cpageId}
templates/CRM/Contribute/Page/Widget.tpl,{$cpageId}
templates/CRM/Contribute/Page/Widget.tpl,{$cpageId}
templates/CRM/Contribute/Page/Widget.tpl,{$form.url_logo.value}
templates/CRM/Contribute/Page/Widget.tpl,{$cpageId}
templates/CRM/Contribute/Page/Widget.tpl,{$cpageId}
templates/CRM/Contribute/Page/Widget.tpl,{$cpageId}
templates/CRM/Contribute/Page/Widget.tpl,{$cpageId}
templates/CRM/Contribute/Page/Widget.tpl,{$cpageId}
templates/CRM/Contribute/Page/Widget.tpl,{$cpageId}
templates/CRM/Contribute/Page/Widget.tpl,{$config->userFrameworkResourceURL}
templates/CRM/Contribute/Page/Widget.tpl,{$cpageId}
templates/CRM/Contribute/Page/Widget.tpl,{$widget_id}
templates/CRM/Core/AgeRange.tpl,{$form.$minName.label}
templates/CRM/Core/AgeRange.tpl,{$form.$minName.html}
templates/CRM/Core/AgeRange.tpl,{$form.$maxName.label}
templates/CRM/Core/AgeRange.tpl,{$form.$maxName.html}
templates/CRM/Core/AgeRange.tpl,{$form.$dateName.label}
templates/CRM/Core/AgeRange.tpl,{$form.$dateName.html}
templates/CRM/Core/AgeRange.tpl,{$form.formClass}
templates/CRM/Core/BillingBlock.tpl,{$paymentTypeName}
templates/CRM/Core/BillingBlock.tpl,{$paymentTypeLabel}
templates/CRM/Core/BillingBlock.tpl,{$paymentTypeName}
templates/CRM/Core/BillingBlock.tpl,{$form.$paymentField.name}
templates/CRM/Core/BillingBlock.tpl,{$form.$paymentField.label}
templates/CRM/Core/BillingBlock.tpl,{$form.$paymentField.html}
templates/CRM/Core/BillingBlock.tpl,{$paymentFieldsMetadata.$name.description}
templates/CRM/Core/BillingBlock.tpl,{$form.$billingField.name}
templates/CRM/Core/BillingBlock.tpl,{$form.$billingField.label}
templates/CRM/Core/BillingBlock.tpl,{$form.$billingField.html}
templates/CRM/Core/BillingBlock.tpl,{$form.$billingField.html|crmAddClass:big}
templates/CRM/Core/BillingBlock.tpl,{$profileAddressFields|@json_encode}
templates/CRM/Core/Calendar/GData.tpl,{$event.title}
templates/CRM/Core/Calendar/GData.tpl,{$event.description}
templates/CRM/Core/Calendar/GData.tpl,{$event.contact_email}
templates/CRM/Core/Calendar/GData.tpl,{$event.location}
templates/CRM/Core/Calendar/GData.tpl,{$event.start_date|crmICalDate:1}
templates/CRM/Core/Calendar/GData.tpl,{$event.end_date|crmICalDate:1}
templates/CRM/Core/Calendar/ICal.tpl,{$timezone}
templates/CRM/Core/Calendar/ICal.tpl,{$event.uid}
templates/CRM/Core/Calendar/ICal.tpl,{$event.title|crmICalText}
templates/CRM/Core/Calendar/ICal.tpl,{$event.description|crmICalText}
templates/CRM/Core/Calendar/ICal.tpl,{$event.event_type|crmICalText}
templates/CRM/Core/Calendar/ICal.tpl,{$event.start_date|crmICalDate}
templates/CRM/Core/Calendar/ICal.tpl,{$event.start_date|crmICalDate}
templates/CRM/Core/Calendar/ICal.tpl,"{$smarty.now|date_format:'%Y-%m-%d %H:%M:%S'|crmICalDate}"
templates/CRM/Core/Calendar/ICal.tpl,{$event.end_date|crmICalDate}
templates/CRM/Core/Calendar/ICal.tpl,{$event.start_date|crmICalDate}
templates/CRM/Core/Calendar/ICal.tpl,{$event.location|crmICalText}
templates/CRM/Core/Calendar/ICal.tpl,{$event.contact_email|crmICalText}
templates/CRM/Core/Calendar/ICal.tpl,{$event.url}
templates/CRM/Core/Calendar/Rss.tpl,{$config->userFrameworkBaseURL}
templates/CRM/Core/Calendar/Rss.tpl,{$rssLang}
templates/CRM/Core/Calendar/Rss.tpl,{$event.title|escape:'html'}
templates/CRM/Core/Calendar/Rss.tpl,{$event.summary|escape:'html'}
templates/CRM/Core/Calendar/Rss.tpl,{$event.description|escape:'html'}
templates/CRM/Core/Calendar/Rss.tpl,{$event.start_date|crmDate}
templates/CRM/Core/Calendar/Rss.tpl,"{$event.end_date|date_format:""%I:%M %p""}"
templates/CRM/Core/Calendar/Rss.tpl,{$event.end_date|crmDate}
templates/CRM/Core/Calendar/Rss.tpl,{$event.location|escape:'html'}
templates/CRM/Core/Calendar/Rss.tpl,{$event.event_type|escape:'html'}
templates/CRM/Core/Calendar/Rss.tpl,{$event.contact_email}
templates/CRM/Core/Calendar/Rss.tpl,{$event.uid}
templates/CRM/Core/Date.tpl,{$form.dateFormats.label}
templates/CRM/Core/Date.tpl,{$form.dateFormats.html}
templates/CRM/Core/DatePickerRange.tpl,{$form.$relativeName.label}
templates/CRM/Core/DatePickerRange.tpl,{$form.$relativeName.html}
templates/CRM/Core/DatePickerRange.tpl,{$form.$fromName.label}
templates/CRM/Core/DatePickerRange.tpl,{$form.$fromName.html}
templates/CRM/Core/DatePickerRange.tpl,{$form.$toName.label}
templates/CRM/Core/DatePickerRange.tpl,{$form.$toName.html}
templates/CRM/Core/DatePickerRange.tpl,{$relativeName}
templates/CRM/Core/DatePickerRangeWrapper.tpl,{$colspan}
templates/CRM/Core/DatePickerRangeWrapper.tpl,{$class}
templates/CRM/Core/DateRange.tpl,{$label}
templates/CRM/Core/DateRange.tpl,{$form.$relativeName.html}
templates/CRM/Core/DateRange.tpl,{$form.$fromName.label}
templates/CRM/Core/DateRange.tpl,{$form.$toName.label}
templates/CRM/Core/DateRange.tpl,{$relativeName}
templates/CRM/Core/Form/EntityForm.tpl,{$entityInClassFormat}
templates/CRM/Core/Form/EntityForm.tpl,{$deleteMessage|escape}
templates/CRM/Core/Form/EntityForm.tpl,{$entityInClassFormat}
templates/CRM/Core/Form/EntityForm.tpl,{$fieldName}
templates/CRM/Core/Form/Field.tpl,{$form.$fieldName.label}
templates/CRM/Core/Form/Field.tpl,{$fieldSpec.help}
templates/CRM/Core/Form/Field.tpl,{$fieldSpec.pre_html_text}
templates/CRM/Core/Form/Field.tpl,{$form.$fieldName.html|crmMoney:$fieldSpec.formatterParam}
templates/CRM/Core/Form/Field.tpl,{$form.$fieldName.html}
templates/CRM/Core/Form/Field.tpl,{$fieldSpec.place_holder}
templates/CRM/Core/Form/Field.tpl,{$fieldSpec.post_html_text}
templates/CRM/Core/Form/Field.tpl,{$fieldSpec.description}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.repetition_frequency_unit.label}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.repetition_frequency_interval.html}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.repetition_frequency_unit.html}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.start_action_condition.label}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.start_action_condition.html}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.repeats_by.label}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.repeats_by.1.html}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.limit_to.html}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.repeats_by.2.html}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.entity_status_1.html}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.entity_status_2.html}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.repetition_start_date.label}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.repetition_start_date.html}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.ends.label}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.ends.1.html}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.start_action_offset.html}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.ends.2.html}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.repeat_absolute_date.html}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.exclude_date_list.label}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.exclude_date_list.html}
templates/CRM/Core/Form/RecurringEntity.tpl,{$form.formClass}
templates/CRM/Core/Form/RecurringEntity.tpl,{$entityTable}
templates/CRM/Core/Form/RecurringEntity.tpl,{$currentEntityId}
templates/CRM/Core/Form/RecurringEntity.tpl,{$recurringFrequencyOptions|@json_encode}
templates/CRM/Core/Form/ShortCode.tpl,{$form.component.html}
templates/CRM/Core/Form/ShortCode.tpl,{$selects|@json_encode}
templates/CRM/Core/Form/ShortCode.tpl,{$form.entity.html}
templates/CRM/Core/Form/ShortCode.tpl,{$option.components|@json_encode}
templates/CRM/Core/Form/ShortCode.tpl,{$form.$item.label}
templates/CRM/Core/Form/ShortCode.tpl,{$form.$item.html}
templates/CRM/Core/Form/Task/Batch.tpl,{$taskComponent.lc}
templates/CRM/Core/Form/Task/Batch.tpl,{$form._qf_Batch_refresh.html}
templates/CRM/Core/Form/Task/Batch.tpl,{$fTitle}
templates/CRM/Core/Form/Task/Batch.tpl,{$config->resourceBase}
templates/CRM/Core/Form/Task/Batch.tpl,{$field.name}
templates/CRM/Core/Form/Task/Batch.tpl,{$field.title}
templates/CRM/Core/Form/Task/Batch.tpl,{$mid}
templates/CRM/Core/Form/Task/Batch.tpl,{$contactDetails.$mid.$fName}
templates/CRM/Core/Form/Task/Batch.tpl,{$form.field.$mid.$n.html}
templates/CRM/Core/Form/Task/Batch.tpl,{$form._qf_Batch_refresh.html}
templates/CRM/Core/Form/Task/PickProfile.tpl,{$taskComponent.lc}
templates/CRM/Core/Form/Task/PickProfile.tpl,{$taskComponent.lc}
templates/CRM/Core/Form/Task/PickProfile.tpl,{$form.uf_group_id.label}
templates/CRM/Core/Form/Task/PickProfile.tpl,{$form.uf_group_id.html}
templates/CRM/Core/I18n/Dialog.tpl,{$field}
templates/CRM/Core/I18n/Form.tpl,{$form.$elem.label}
templates/CRM/Core/I18n/Form.tpl,{$form.$elem.html}
templates/CRM/Core/Page/RecurringEntityPreview.tpl,{$id}
templates/CRM/Core/Page/RecurringEntityPreview.tpl,{$data}
templates/CRM/Core/Page/RecurringEntityPreview.tpl,{$count}
templates/CRM/Core/Page/RecurringEntityPreview.tpl,{$count+1}
templates/CRM/Core/Page/RecurringEntityPreview.tpl,{$row.start_date}
templates/CRM/Core/Page/RecurringEntityPreview.tpl,{$row.end_date}
templates/CRM/Custom/Form/ChangeFieldType.tpl,{$form.src_html_type.label}
templates/CRM/Custom/Form/ChangeFieldType.tpl,{$form.src_html_type.html}
templates/CRM/Custom/Form/ChangeFieldType.tpl,{$form.dst_html_type.label}
templates/CRM/Custom/Form/ChangeFieldType.tpl,{$form.dst_html_type.html}
templates/CRM/Custom/Form/ChangeFieldType.tpl,{$srcHtmlType|@json_encode}
templates/CRM/Custom/Form/ContactReference.tpl,{$prefix}
templates/CRM/Custom/Form/ContactReference.tpl,{$element_name|replace:']':''|replace:'[':'_'}
templates/CRM/Custom/Form/ContactReference.tpl,{$customUrls.$element_name}
templates/CRM/Custom/Form/CustomData.tpl,{$cd_edit.name}
templates/CRM/Custom/Form/CustomData.tpl,{$cd_edit.name}
templates/CRM/Custom/Form/CustomData.tpl,{$cd_edit.title}
templates/CRM/Custom/Form/CustomData.tpl,{$group_id}
templates/CRM/Custom/Form/CustomData.tpl,{$cgCount}
templates/CRM/Custom/Form/DeleteFile.tpl,{$form.buttons.html}
templates/CRM/Custom/Form/Edit/CustomData.tpl,{$tableID}
templates/CRM/Custom/Form/Edit/CustomData.tpl,{$group_id}
templates/CRM/Custom/Form/Edit/CustomData.tpl,{$contactId}
templates/CRM/Custom/Form/Edit/CustomData.tpl,{$cd_edit.help_pre}
templates/CRM/Custom/Form/Edit/CustomData.tpl,{$cd_edit.help_post}
templates/CRM/Custom/Form/Edit/CustomData.tpl,{$cgCount}
templates/CRM/Custom/Form/Edit/CustomData.tpl,{$group_id}
templates/CRM/Custom/Form/Edit/CustomData.tpl,{$group_id}
templates/CRM/Custom/Form/Edit/CustomData.tpl,{$cgCount}
templates/CRM/Custom/Form/Edit/CustomData.tpl,{$cd_edit.extends}
templates/CRM/Custom/Form/Edit/CustomData.tpl,{$cd_edit.subtype}
templates/CRM/Custom/Form/Edit/CustomData.tpl,{$cd_edit.extends_entity_column_id}
templates/CRM/Custom/Form/Edit/CustomData.tpl,{$cgCount}
templates/CRM/Custom/Form/Edit/CustomData.tpl,{$group_id}
templates/CRM/Custom/Form/Edit/CustomField.tpl,{$element.element_name}
templates/CRM/Custom/Form/Edit/CustomField.tpl,{$element.help_pre}
templates/CRM/Custom/Form/Edit/CustomField.tpl,{$element.element_name}
templates/CRM/Custom/Form/Edit/CustomField.tpl,{$formElement.label}
templates/CRM/Custom/Form/Edit/CustomField.tpl,{$formElement.$key.html}
templates/CRM/Custom/Form/Edit/CustomField.tpl,{$element.element_name}
templates/CRM/Custom/Form/Edit/CustomField.tpl,{$formElement.label}
templates/CRM/Custom/Form/Edit/CustomField.tpl,{$formElement.html}
templates/CRM/Custom/Form/Edit/CustomField.tpl,{$element.element_name}
templates/CRM/Custom/Form/Edit/CustomField.tpl,{$element.element_value.displayURL}
templates/CRM/Custom/Form/Edit/CustomField.tpl,{$element.element_value.displayURL}
templates/CRM/Custom/Form/Edit/CustomField.tpl,{$element.element_value.imageThumbHeight}
templates/CRM/Custom/Form/Edit/CustomField.tpl,{$element.element_value.imageThumbWidth}
templates/CRM/Custom/Form/Edit/CustomField.tpl,{$element.element_value.fileURL}
templates/CRM/Custom/Form/Edit/CustomField.tpl,{$element.element_value.fileName}
templates/CRM/Custom/Form/Edit/CustomField.tpl,{$element.element_value.fileName}
templates/CRM/Custom/Form/Edit/CustomField.tpl,{$element.element_value.deleteURLArgs}
templates/CRM/Custom/Form/Field.tpl,{$form.label.label}
templates/CRM/Custom/Form/Field.tpl,{$form.label.html}
templates/CRM/Custom/Form/Field.tpl,{$form.data_type.label}
templates/CRM/Custom/Form/Field.tpl,{$form.data_type.html}
templates/CRM/Custom/Form/Field.tpl,{$form.in_selector.label}
templates/CRM/Custom/Form/Field.tpl,{$form.in_selector.html}
templates/CRM/Custom/Form/Field.tpl,{$form.text_length.label}
templates/CRM/Custom/Form/Field.tpl,{$form.text_length.html}
templates/CRM/Custom/Form/Field.tpl,{$form.group_id.label}
templates/CRM/Custom/Form/Field.tpl,{$form.group_id.html}
templates/CRM/Custom/Form/Field.tpl,{$form.filter.label}
templates/CRM/Custom/Form/Field.tpl,{$form.filter.html}
templates/CRM/Custom/Form/Field.tpl,{$form.options_per_line.label}
templates/CRM/Custom/Form/Field.tpl,{$form.options_per_line.html|crmAddClass:two}
templates/CRM/Custom/Form/Field.tpl,{$form.start_date_years.label}
templates/CRM/Custom/Form/Field.tpl,{$form.start_date_years.html}
templates/CRM/Custom/Form/Field.tpl,{$form.end_date_years.label}
templates/CRM/Custom/Form/Field.tpl,{$form.end_date_years.html}
templates/CRM/Custom/Form/Field.tpl,{$form.date_format.label}
templates/CRM/Custom/Form/Field.tpl,{$form.date_format.html}
templates/CRM/Custom/Form/Field.tpl,{$form.time_format.label}
templates/CRM/Custom/Form/Field.tpl,{$form.time_format.html}
templates/CRM/Custom/Form/Field.tpl,{$form.note_rows.label}
templates/CRM/Custom/Form/Field.tpl,{$form.note_rows.html}
templates/CRM/Custom/Form/Field.tpl,{$form.note_columns.label}
templates/CRM/Custom/Form/Field.tpl,{$form.note_columns.html}
templates/CRM/Custom/Form/Field.tpl,{$form.note_length.label}
templates/CRM/Custom/Form/Field.tpl,{$form.note_length.html}
templates/CRM/Custom/Form/Field.tpl,{$form.weight.label}
templates/CRM/Custom/Form/Field.tpl,{$form.weight.html|crmAddClass:two}
templates/CRM/Custom/Form/Field.tpl,{$form.default_value.label}
templates/CRM/Custom/Form/Field.tpl,{$form.default_value.html}
templates/CRM/Custom/Form/Field.tpl,{$form.help_pre.label}
templates/CRM/Custom/Form/Field.tpl,{$form.help_pre.html|crmAddClass:huge}
templates/CRM/Custom/Form/Field.tpl,{$form.help_post.label}
templates/CRM/Custom/Form/Field.tpl,{$form.help_post.html|crmAddClass:huge}
templates/CRM/Custom/Form/Field.tpl,{$form.is_required.label}
templates/CRM/Custom/Form/Field.tpl,{$form.is_required.html}
templates/CRM/Custom/Form/Field.tpl,{$form.is_searchable.label}
templates/CRM/Custom/Form/Field.tpl,{$form.is_searchable.html}
templates/CRM/Custom/Form/Field.tpl,{$form.is_search_range.label}
templates/CRM/Custom/Form/Field.tpl,{$form.is_search_range.html}
templates/CRM/Custom/Form/Field.tpl,{$form.is_active.label}
templates/CRM/Custom/Form/Field.tpl,{$form.is_active.html}
templates/CRM/Custom/Form/Field.tpl,{$form.is_view.label}
templates/CRM/Custom/Form/Field.tpl,{$form.is_view.html}
templates/CRM/Custom/Form/Field.tpl,{$form.formClass}
templates/CRM/Custom/Form/Field.tpl,{$dataTypeKeys|@json_encode}
templates/CRM/Custom/Form/Group.tpl,{$form.title.label}
templates/CRM/Custom/Form/Group.tpl,{$form.title.html}
templates/CRM/Custom/Form/Group.tpl,{$form.extends.label}
templates/CRM/Custom/Form/Group.tpl,{$form.extends.html}
templates/CRM/Custom/Form/Group.tpl,{$form.weight.label}
templates/CRM/Custom/Form/Group.tpl,{$form.weight.html}
templates/CRM/Custom/Form/Group.tpl,{$form.is_multiple.html}
templates/CRM/Custom/Form/Group.tpl,{$form.is_multiple.label}
templates/CRM/Custom/Form/Group.tpl,{$form.max_multiple.label}
templates/CRM/Custom/Form/Group.tpl,{$form.max_multiple.html}
templates/CRM/Custom/Form/Group.tpl,{$form.style.label}
templates/CRM/Custom/Form/Group.tpl,{$form.style.html}
templates/CRM/Custom/Form/Group.tpl,{$form.collapse_display.html}
templates/CRM/Custom/Form/Group.tpl,{$form.collapse_display.label}
templates/CRM/Custom/Form/Group.tpl,{$form.collapse_adv_display.html}
templates/CRM/Custom/Form/Group.tpl,{$form.collapse_adv_display.label}
templates/CRM/Custom/Form/Group.tpl,{$form.is_active.html}
templates/CRM/Custom/Form/Group.tpl,{$form.is_active.label}
templates/CRM/Custom/Form/Group.tpl,{$form.is_public.html}
templates/CRM/Custom/Form/Group.tpl,{$form.is_public.label}
templates/CRM/Custom/Form/Group.tpl,{$form.help_pre.label}
templates/CRM/Custom/Form/Group.tpl,{$form.help_pre.html}
templates/CRM/Custom/Form/Group.tpl,{$form.help_post.label}
templates/CRM/Custom/Form/Group.tpl,{$form.help_post.html}
templates/CRM/Custom/Form/Group.tpl,{$initHideBlocks}
templates/CRM/Custom/Form/Group.tpl,{$isGroupEmpty|@json_encode}
templates/CRM/Custom/Form/Group.tpl,{$contactTypes}
templates/CRM/Custom/Form/Group.tpl,{$showStyle}
templates/CRM/Custom/Form/Group.tpl,{$showMultiple}
templates/CRM/Custom/Form/Group.tpl,{$showMaxMultiple}
templates/CRM/Custom/Form/Group.tpl,{$defaultSubtypes}
templates/CRM/Custom/Form/MoveField.tpl,{$form.dst_group_id.label}
templates/CRM/Custom/Form/MoveField.tpl,{$form.dst_group_id.html}
templates/CRM/Custom/Form/MoveField.tpl,{$form.is_copy.label}
templates/CRM/Custom/Form/MoveField.tpl,{$form.is_copy.html}
templates/CRM/Custom/Form/Option.tpl,{$form.label.label}
templates/CRM/Custom/Form/Option.tpl,{$form.label.html}
templates/CRM/Custom/Form/Option.tpl,{$form.value.label}
templates/CRM/Custom/Form/Option.tpl,{$form.value.html}
templates/CRM/Custom/Form/Option.tpl,{$form.description.label}
templates/CRM/Custom/Form/Option.tpl,{$form.description.html}
templates/CRM/Custom/Form/Option.tpl,{$form.weight.label}
templates/CRM/Custom/Form/Option.tpl,{$form.weight.html}
templates/CRM/Custom/Form/Option.tpl,{$form.is_active.label}
templates/CRM/Custom/Form/Option.tpl,{$form.is_active.html}
templates/CRM/Custom/Form/Option.tpl,{$form.default_value.label}
templates/CRM/Custom/Form/Option.tpl,{$form.default_value.html}
templates/CRM/Custom/Form/Option.tpl,{$form.done.html}
templates/CRM/Custom/Form/Optionfields.tpl,{$form.option_type.label}
templates/CRM/Custom/Form/Optionfields.tpl,{$form.option_type.html}
templates/CRM/Custom/Form/Optionfields.tpl,{$form.option_group_id.label}
templates/CRM/Custom/Form/Optionfields.tpl,{$form.option_group_id.html}
templates/CRM/Custom/Form/Optionfields.tpl,{$index}
templates/CRM/Custom/Form/Optionfields.tpl,{$index}
templates/CRM/Custom/Form/Optionfields.tpl,{$index}
templates/CRM/Custom/Form/Optionfields.tpl,{$index}
templates/CRM/Custom/Form/Optionfields.tpl,{$form.default_option[$index].html}
templates/CRM/Custom/Form/Optionfields.tpl,{$index}
templates/CRM/Custom/Form/Optionfields.tpl,{$form.default_checkbox_option.$index.html}
templates/CRM/Custom/Form/Optionfields.tpl,{$form.option_label.$index.html}
templates/CRM/Custom/Form/Optionfields.tpl,{$form.option_value.$index.html}
templates/CRM/Custom/Form/Optionfields.tpl,{$form.option_weight.$index.html}
templates/CRM/Custom/Form/Optionfields.tpl,{$form.option_status.$index.html}
templates/CRM/Custom/Form/Optionfields.tpl,{$showBlocks}
templates/CRM/Custom/Form/Optionfields.tpl,{$hideBlocks}
templates/CRM/Custom/Form/Preview.tpl,{$fieldName.title}
templates/CRM/Custom/Form/Preview.tpl,{$smarty.capture.legend}
templates/CRM/Custom/Form/Preview.tpl,{$cd_edit.help_pre}
templates/CRM/Custom/Form/Preview.tpl,{$element.help_pre}
templates/CRM/Custom/Form/Preview.tpl,{$form.$element_name.label}
templates/CRM/Custom/Form/Preview.tpl,{$form.$element_name.$key.html}
templates/CRM/Custom/Form/Preview.tpl,{$form.$element_name.label}
templates/CRM/Custom/Form/Preview.tpl,{$form.$element_name.html}
templates/CRM/Custom/Form/Preview.tpl,{$cd_edit.help_post}
templates/CRM/Custom/Form/Search.tpl,{$cd_edit.name}
templates/CRM/Custom/Form/Search.tpl,{$cd_edit.title}
templates/CRM/Custom/Form/Search.tpl,{$form.$element_name_from.label}
templates/CRM/Custom/Form/Search.tpl,{$form.$element_name_from.html|crmAddClass:six}
templates/CRM/Custom/Form/Search.tpl,{$form.$element_name_to.label}
templates/CRM/Custom/Form/Search.tpl,{$form.$element_name_to.html|crmAddClass:six}
templates/CRM/Custom/Form/Search.tpl,{$element_name}
templates/CRM/Custom/Form/Search.tpl,{$element.label}
templates/CRM/Custom/Form/Search.tpl,{$form.$element_name.label}
templates/CRM/Custom/Form/Search.tpl,{$form.$element_name.html}
templates/CRM/Custom/Form/Search.tpl,{$element_name}
templates/CRM/Custom/Form/Search.tpl,{$form.$operator_name.html}
templates/CRM/Custom/Import/Form/DataSource.tpl,{$form.entity.label}
templates/CRM/Custom/Import/Form/DataSource.tpl,{$form.entity.html}
templates/CRM/Custom/Import/Form/DataSource.tpl,{$form.uploadFile.label}
templates/CRM/Custom/Import/Form/DataSource.tpl,{$form.uploadFile.html}
templates/CRM/Custom/Import/Form/DataSource.tpl,{$form.skipColumnHeader.html}
templates/CRM/Custom/Import/Form/DataSource.tpl,{$form.skipColumnHeader.label}
templates/CRM/Custom/Import/Form/DataSource.tpl,{$form.multipleCustomData.label}
templates/CRM/Custom/Import/Form/DataSource.tpl,{$form.multipleCustomData.html}
templates/CRM/Custom/Import/Form/DataSource.tpl,{$form.contactType.label}
templates/CRM/Custom/Import/Form/DataSource.tpl,{$form.contactType.html}
templates/CRM/Custom/Import/Form/DataSource.tpl,{$form.fieldSeparator.label}
templates/CRM/Custom/Import/Form/DataSource.tpl,{$form.fieldSeparator.html}
templates/CRM/Custom/Import/Form/DataSource.tpl,{$form.savedMapping.html}
templates/CRM/Custom/Page/CustomDataView.tpl,{$cd_edit.help_pre}
templates/CRM/Custom/Page/CustomDataView.tpl,{$cd_edit.name}
templates/CRM/Custom/Page/CustomDataView.tpl,{$index}
templates/CRM/Custom/Page/CustomDataView.tpl,{$cd_edit.title}
templates/CRM/Custom/Page/CustomDataView.tpl,{$cvID}
templates/CRM/Custom/Page/CustomDataView.tpl,{$customGroupId}
templates/CRM/Custom/Page/CustomDataView.tpl,{$contactId}
templates/CRM/Custom/Page/CustomDataView.tpl,{$element.field_title}
templates/CRM/Custom/Page/CustomDataView.tpl,{$val}
templates/CRM/Custom/Page/CustomDataView.tpl,{$element.field_title}
templates/CRM/Custom/Page/CustomDataView.tpl,{$element.field_value|crmMoney}
templates/CRM/Custom/Page/CustomDataView.tpl,{$element.field_value}
templates/CRM/Custom/Page/CustomDataView.tpl,{$element.field_value|nl2br}
templates/CRM/Custom/Page/CustomDataView.tpl,{$element.field_value}
templates/CRM/Custom/Page/CustomDataView.tpl,{$element.field_title}
templates/CRM/Custom/Page/CustomDataView.tpl,{$val}
templates/CRM/Custom/Page/CustomDataView.tpl,{$element.field_title}
templates/CRM/Custom/Page/CustomDataView.tpl,{$element.field_value}
templates/CRM/Custom/Page/CustomDataView.tpl,{$element.field_value|crmMoney}
templates/CRM/Custom/Page/CustomDataView.tpl,{$element.field_value}
templates/CRM/Custom/Page/CustomDataView.tpl,{$element.field_value|nl2br}
templates/CRM/Custom/Page/CustomDataView.tpl,{$element.field_value}
templates/CRM/Custom/Page/CustomDataView.tpl,{$cd_edit.help_post}
templates/CRM/Custom/Page/Field.tpl,{$row.id}
templates/CRM/Custom/Page/Field.tpl,{$row.label}
templates/CRM/Custom/Page/Field.tpl,{$row.data_type}
templates/CRM/Custom/Page/Field.tpl,{$row.html_type}
templates/CRM/Custom/Page/Field.tpl,{$row.weight}
templates/CRM/Custom/Page/Field.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Custom/Page/Field.tpl,{$config->resourceBase}
templates/CRM/Custom/Page/Group.tpl,{$row.id}
templates/CRM/Custom/Page/Group.tpl,{$row.class}
templates/CRM/Custom/Page/Group.tpl,{$row.title}
templates/CRM/Custom/Page/Group.tpl,{$row.id}
templates/CRM/Custom/Page/Group.tpl,{$row.extends_display}
templates/CRM/Custom/Page/Group.tpl,{$row.extends_entity_column_value}
templates/CRM/Custom/Page/Group.tpl,{$row.weight}
templates/CRM/Custom/Page/Group.tpl,{$row.style_display}
templates/CRM/Custom/Page/Group.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Custom/Page/Group.tpl,{$config->resourceBase}
templates/CRM/Custom/Page/Option.tpl,{$optionGroupID}
templates/CRM/Dashlet/Page/Blog.tpl,{$channel.description|escape}
templates/CRM/Dashlet/Page/Blog.tpl,{$channel.name}
templates/CRM/Dashlet/Page/Blog.tpl,{$channel.title}
templates/CRM/Dashlet/Page/Blog.tpl,{$channel.name}
templates/CRM/Dashlet/Page/Blog.tpl,{$article.title}
templates/CRM/Dashlet/Page/Blog.tpl,{$article.description|strip_tags|mb_substr:0:100}
templates/CRM/Dashlet/Page/Blog.tpl,{$article.description|strip_tags}
templates/CRM/Dashlet/Page/Blog.tpl,{$article.description}
templates/CRM/Dashlet/Page/Blog.tpl,{$article.link}
templates/CRM/Dashlet/Page/Blog.tpl,{$article.title|escape}
templates/CRM/Dashlet/Page/CaseDashboard.tpl,{$newCaseURL}
templates/CRM/Dashlet/Page/CaseDashboard.tpl,{$header.url}
templates/CRM/Dashlet/Page/CaseDashboard.tpl,{$header.status}
templates/CRM/Dashlet/Page/CaseDashboard.tpl,{$caseType}
templates/CRM/Dashlet/Page/CaseDashboard.tpl,{$row.$caseStatus.url}
templates/CRM/Dashlet/Page/CaseDashboard.tpl,{$row.$caseStatus.count}
templates/CRM/Dashlet/Page/GettingStarted.tpl,{$gettingStarted}
templates/CRM/Event/Cart/Form/Checkout/ConferenceEvents.tpl,{$slot_name}
templates/CRM/Event/Cart/Form/Checkout/ConferenceEvents.tpl,{$form.$field_name.html}
templates/CRM/Event/Cart/Form/Checkout/ConferenceEvents.tpl,{$session_options}
templates/CRM/Event/Cart/Form/Checkout/Participant.tpl,{$event_id}
templates/CRM/Event/Cart/Form/Checkout/Participant.tpl,{$participant_id}
templates/CRM/Event/Cart/Form/Checkout/Participant.tpl,{$custom.$name}
templates/CRM/Event/Cart/Form/Checkout/Participant.tpl,{$form.event.$event_id.participant.$participant_id.email.label}
templates/CRM/Event/Cart/Form/Checkout/Participant.tpl,{$form.event.$event_id.participant.$participant_id.email.html}
templates/CRM/Event/Cart/Form/Checkout/Participant.tpl,{$event_id}
templates/CRM/Event/Cart/Form/Checkout/Participant.tpl,{$participant_id}
templates/CRM/Event/Cart/Form/Checkout/Participant.tpl,{$form->name}
templates/CRM/Event/Cart/Form/Checkout/ParticipantsAndPrices.tpl,{$event_in_cart->event->title}
templates/CRM/Event/Cart/Form/Checkout/ParticipantsAndPrices.tpl,"{$event_in_cart->event->start_date|date_format:""%m/%d/%Y %l:%M%p""}"
templates/CRM/Event/Cart/Form/Checkout/ParticipantsAndPrices.tpl,{$event_in_cart->event_id}
templates/CRM/Event/Cart/Form/Checkout/ParticipantsAndPrices.tpl,{$event_in_cart->event_cart->id}
templates/CRM/Event/Cart/Form/Checkout/ParticipantsAndPrices.tpl,{$event_in_cart->event_id}
templates/CRM/Event/Cart/Form/Checkout/ParticipantsAndPrices.tpl,{$form.$price_field_name.label}
templates/CRM/Event/Cart/Form/Checkout/ParticipantsAndPrices.tpl,{$form.$price_field_name.html|replace:'/label>&nbsp;':'/label><br>'}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$line_item.class}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$line_item.event->title}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$line_item.event->start_date|crmDate}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$line_item.num_participants}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$participant.display_name}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$participant.display_name}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,"{$line_item.cost|crmMoney:$currency|string_format:""%10s""}"
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,"{$line_item.amount|crmMoney:$currency|string_format:""%10s""}"
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,"{$sub_total|crmMoney:$currency|string_format:""%10s""}"
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$i.title}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,"{$i.amount|crmMoney:$currency|string_format:""%10s""}"
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,"{$total|crmMoney:$currency|string_format:""%10s""}"
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.is_pay_later.name}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.is_pay_later.label}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.is_pay_later.html}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$pay_later_instructions}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.billing_contact_email.name}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.billing_contact_email.label}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.billing_contact_email.html}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.note.name}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.note.label}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.note.html}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.source.name}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.source.label}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.source.html}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.payment_type.name}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.payment_type.label}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.payment_type.html}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.check_number.name}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.check_number.label}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.check_number.html}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.is_pending.name}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.is_pending.label}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.is_pending.html}
templates/CRM/Event/Cart/Form/Checkout/Payment.tpl,{$form.is_pay_later.name}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$pay_later_receipt}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$billing_name}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$billing_street_address}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$billing_city}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$billing_state}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$billing_postal_code}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$credit_card_type}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$credit_card_number}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$credit_card_exp_date.M}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$credit_card_exp_date.Y}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$line_item.class}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$line_item.event->title}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$line_item.location.address.1.name}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$line_item.location.address.1.street_address}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$line_item.location.address.1.supplemental_address_1}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$line_item.location.address.1.supplemental_address_2}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$line_item.location.address.1.supplemental_address_3}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$line_item.location.address.1.city}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$line_item.location.address.1.state_province}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$line_item.location.address.1.postal_code}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,"{$line_item.event->start_date|date_format:""%D %I:%M %p""}"
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,"{$line_item.event->end_date|date_format:""%I:%M %p""}"
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$line_item.num_participants}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$participant.display_name}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$participant.display_name}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,"{$line_item.cost|crmMoney:$currency|string_format:""%10s""}"
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,"{$line_item.amount|crmMoney:$currency|string_format:""%10s""}"
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,"{$sub_total|crmMoney:$currency|string_format:""%10s""}"
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,{$i.title}
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,"{$i.amount|crmMoney:$currency|string_format:""%10s""}"
templates/CRM/Event/Cart/Form/Checkout/ThankYou.tpl,"{$total|crmMoney:$currency|string_format:""%10s""}"
templates/CRM/Event/Cart/Page/ViewCart.tpl,{$event_in_cart.event.title}
templates/CRM/Event/Form/EventFees.tpl,{$discount}
templates/CRM/Event/Form/EventFees.tpl,{$form.discount_id.label}
templates/CRM/Event/Form/EventFees.tpl,{$form.discount_id.html}
templates/CRM/Event/Form/EventFees.tpl,{$fee_level}
templates/CRM/Event/Form/EventFees.tpl,{$fee_amount|crmMoney:$fee_currency}
templates/CRM/Event/Form/EventFees.tpl,{$form.amount.label}
templates/CRM/Event/Form/EventFees.tpl,{$form.record_contribution.label}
templates/CRM/Event/Form/EventFees.tpl,{$form.record_contribution.html}
templates/CRM/Event/Form/EventFees.tpl,{$form.financial_type_id.label}
templates/CRM/Event/Form/EventFees.tpl,{$form.financial_type_id.html}
templates/CRM/Event/Form/EventFees.tpl,{$form.total_amount.label}
templates/CRM/Event/Form/EventFees.tpl,{$form.total_amount.html|crmMoney:$currency}
templates/CRM/Event/Form/EventFees.tpl,{$form.receive_date.label}
templates/CRM/Event/Form/EventFees.tpl,{$form.receive_date.html}
templates/CRM/Event/Form/EventFees.tpl,{$form.trxn_id.label}
templates/CRM/Event/Form/EventFees.tpl,{$form.trxn_id.html}
templates/CRM/Event/Form/EventFees.tpl,{$form.contribution_status_id.label}
templates/CRM/Event/Form/EventFees.tpl,{$form.contribution_status_id.html}
templates/CRM/Event/Form/EventFees.tpl,{$form.payment_instrument_id.label}
templates/CRM/Event/Form/EventFees.tpl,{$form.payment_instrument_id.html}
templates/CRM/Event/Form/EventFees.tpl,{$form.send_receipt.html}
templates/CRM/Event/Form/EventFees.tpl,{$form.from_email_address.label}
templates/CRM/Event/Form/EventFees.tpl,{$form.from_email_address.html}
templates/CRM/Event/Form/EventFees.tpl,{$form.receipt_text.label}
templates/CRM/Event/Form/EventFees.tpl,{$form.receipt_text.html|crmAddClass:huge}
templates/CRM/Event/Form/EventFees.tpl,{$form.send_receipt.html}
templates/CRM/Event/Form/EventFees.tpl,{$form.from_email_address.label}
templates/CRM/Event/Form/EventFees.tpl,{$form.from_email_address.html}
templates/CRM/Event/Form/EventFees.tpl,{$form.receipt_text.label}
templates/CRM/Event/Form/EventFees.tpl,{$form.receipt_text.html|crmAddClass:huge}
templates/CRM/Event/Form/EventFees.tpl,{$form.formClass}
templates/CRM/Event/Form/EventFees.tpl,{$form.amount.value}
templates/CRM/Event/Form/EventFees.tpl,{$eventFeeBlockValues}
templates/CRM/Event/Form/ManageEvent/Conference.tpl,{$form.title.label}
templates/CRM/Event/Form/ManageEvent/Conference.tpl,{$form.title.html}
templates/CRM/Event/Form/ManageEvent/Conference.tpl,{$form.parent_event_id.label}
templates/CRM/Event/Form/ManageEvent/Conference.tpl,{$form.parent_event_id.html|crmAddClass:huge}
templates/CRM/Event/Form/ManageEvent/Conference.tpl,{$form.slot_label_id.label}
templates/CRM/Event/Form/ManageEvent/Conference.tpl,{$form.slot_label_id.html|crmAddClass:big}
templates/CRM/Event/Form/ManageEvent/ConfirmRepeatMode.tpl,{$recurringEntityType|lower}
templates/CRM/Event/Form/ManageEvent/ConfirmRepeatMode.tpl,{$entityID}
templates/CRM/Event/Form/ManageEvent/ConfirmRepeatMode.tpl,{$entityTable}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.template_id.label}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.template_id.html}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.template_title.label}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.template_title.html}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.event_type_id.label}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.event_type_id.html}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.default_role_id.label}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.default_role_id.html}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.participant_listing_id.label}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.participant_listing_id.html}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.title.label}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.title.html}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.summary.label}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.summary.html}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.description.label}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.description.html}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.start_date.label}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.start_date.html}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.end_date.label}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.end_date.html}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.max_participants.label}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.max_participants.html|crmAddClass:four}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.has_waitlist.label}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.has_waitlist.html}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.event_full_text.label}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.event_full_text.html}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.waitlist_text.label}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.waitlist_text.html}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.is_map.html}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.is_map.label}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.is_public.html}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.is_public.label}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.is_share.html}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.is_share.label}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.is_active.html}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.is_active.label}
templates/CRM/Event/Form/ManageEvent/EventInfo.tpl,{$form.formClass}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.title.label}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.title.html}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.is_monetary.label}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.is_monetary.html}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.currency.label}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.currency.html}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.payment_processor.label}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.payment_processor.html}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.is_pay_later.html}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.is_pay_later.label}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.pay_later_text.label}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.pay_later_text.html|crmAddClass:big}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.pay_later_receipt.label}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.pay_later_receipt.html|crmAddClass:big}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.is_billing_required.html}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.is_billing_required.label}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.fee_label.label}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.fee_label.html}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.financial_type_id.label}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.financial_type_id.html}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.price_set_id.label}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.price_set_id.html}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.default.0.html}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$idx}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.label.$idx.html}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$idx}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.value.$idx.html|crmMoney}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$idx}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.default.$idx.html}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.is_discount.html}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.is_discount.label}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$index}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$index}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$index}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$index}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$index}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$config->resourceBase}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.discount_name.$index.html}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.discount_start_date.$index.html}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.discount_end_date.$index.html}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$config->resourceBase}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form._qf_Fee_submit.html}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.discount_name.$i.value}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.discounted_label.$idx.html}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.discounted_value.$idx.$idy.html|crmMoney}
templates/CRM/Event/Form/ManageEvent/Fee.tpl,{$form.discounted_default.$idx.html}
templates/CRM/Event/Form/ManageEvent/Location.tpl,{$form.location_option.label}
templates/CRM/Event/Form/ManageEvent/Location.tpl,{$item.html}
templates/CRM/Event/Form/ManageEvent/Location.tpl,{$form.loc_event_id.label}
templates/CRM/Event/Form/ManageEvent/Location.tpl,{$form.loc_event_id.html|crmAddClass:huge}
templates/CRM/Event/Form/ManageEvent/Location.tpl,{$form.email.1.email.html|crmAddClass:email}
templates/CRM/Event/Form/ManageEvent/Location.tpl,{$form.email.2.email.html|crmAddClass:email}
templates/CRM/Event/Form/ManageEvent/Location.tpl,{$form.phone.1.phone.html|crmAddClass:phone}
templates/CRM/Event/Form/ManageEvent/Location.tpl,{$form.phone.1.phone_ext.html|crmAddClass:four}
templates/CRM/Event/Form/ManageEvent/Location.tpl,{$form.phone.1.phone_type_id.html}
templates/CRM/Event/Form/ManageEvent/Location.tpl,{$form.phone.2.phone.html|crmAddClass:phone}
templates/CRM/Event/Form/ManageEvent/Location.tpl,{$form.phone.2.phone_ext.html|crmAddClass:four}
templates/CRM/Event/Form/ManageEvent/Location.tpl,{$form.phone.2.phone_type_id.html}
templates/CRM/Event/Form/ManageEvent/Location.tpl,{$form.formClass}
templates/CRM/Event/Form/ManageEvent/Location.tpl,{$form.loc_event_id.value.0}
templates/CRM/Event/Form/ManageEvent/Location.tpl,{$locUsed}
templates/CRM/Event/Form/ManageEvent/Location.tpl,{$config->defaultContactStateProvince}
templates/CRM/Event/Form/ManageEvent/Location.tpl,{$config->defaultContactCountry}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.additional_custom_post_id_multiple[$profileBottomNumAdd].label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.custom_post_id_multiple[$profileBottomNum].label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.additional_custom_post_id_multiple[$profileBottomNumAdd].html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.custom_post_id_multiple[$profileBottomNum].html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$addProfileBottomAdd}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.is_online_registration.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.is_online_registration.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.registration_link_text.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.registration_link_text.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.registration_start_date.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.registration_start_date.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.registration_end_date.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.registration_end_date.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.is_multiple_registrations.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.is_multiple_registrations.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.max_additional_participants.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.max_additional_participants.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.allow_same_participant_emails.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.allow_same_participant_emails.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.dedupe_rule_group_id.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.dedupe_rule_group_id.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.requires_approval.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.requires_approval.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.approval_req_text.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.approval_req_text.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.expiration_time.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.expiration_time.html|crmAddClass:four}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.allow_selfcancelxfer.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.allow_selfcancelxfer.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.selfcancelxfer_time.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.selfcancelxfer_time.html|crmAddClass:four}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.intro_text.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.intro_text.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.footer_text.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.footer_text.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.custom_pre_id.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.custom_pre_id.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.custom_post_id.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.custom_post_id.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$profilePostNum}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.custom_post_id_multiple.$profilePostNum.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.custom_post_id_multiple.$profilePostNum.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.additional_custom_pre_id.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.additional_custom_pre_id.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.additional_custom_post_id.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.additional_custom_post_id.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$profilePostNumA}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.additional_custom_post_id_multiple.$profilePostNumA.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.additional_custom_post_id_multiple.$profilePostNumA.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.is_confirm_enabled.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.is_confirm_enabled.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.confirm_title.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.confirm_title.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.confirm_text.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.confirm_text.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.confirm_footer_text.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.confirm_footer_text.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.thankyou_title.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.thankyou_title.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.thankyou_text.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.thankyou_text.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.thankyou_footer_text.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.thankyou_footer_text.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.is_email_confirm.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.is_email_confirm.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.confirm_email_text.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.confirm_email_text.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.confirm_from_name.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.confirm_from_name.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.confirm_from_email.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.confirm_from_email.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.cc_confirm.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.cc_confirm.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.bcc_confirm.label}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$form.bcc_confirm.html}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$profilePostMultiple|@count}
templates/CRM/Event/Form/ManageEvent/Registration.tpl,{$profilePostMultipleAdd|@count}
templates/CRM/Event/Form/ManageEvent/Repeat.tpl,{$row.id}
templates/CRM/Event/Form/ManageEvent/Repeat.tpl,{$row.id}
templates/CRM/Event/Form/ManageEvent/Repeat.tpl,{$highlight}
templates/CRM/Event/Form/ManageEvent/Repeat.tpl,{$row.title}
templates/CRM/Event/Form/ManageEvent/Repeat.tpl,{$row.id}
templates/CRM/Event/Form/ManageEvent/Repeat.tpl,{$highlight}
templates/CRM/Event/Form/ManageEvent/Repeat.tpl,{$highlight}
templates/CRM/Event/Form/ManageEvent/Repeat.tpl,{$row.start_date|crmDate:'%Y-%m-%d'}
templates/CRM/Event/Form/ManageEvent/Repeat.tpl,"{$row.start_date|crmDate:""%b %d, %Y %l:%M %P""}"
templates/CRM/Event/Form/ManageEvent/Repeat.tpl,{$highlight}
templates/CRM/Event/Form/ManageEvent/Repeat.tpl,{$row.end_date|crmDate:'%Y-%m-%d'}
templates/CRM/Event/Form/ManageEvent/Repeat.tpl,"{$row.end_date|crmDate:""%b %d, %Y %l:%M %P""}"
templates/CRM/Event/Form/ManageEvent/Repeat.tpl,{$highlight}
templates/CRM/Event/Form/ManageEvent/Repeat.tpl,{$row.id}
templates/CRM/Event/Form/ManageEvent/Repeat.tpl,{$highlight}
templates/CRM/Event/Form/ManageEvent/Repeat.tpl,{$row.start_date|crmDate}
templates/CRM/Event/Form/ManageEvent/Repeat.tpl,{$row.end_date|crmDate}
templates/CRM/Event/Form/ManageEvent/Tab.tpl,"{$findParticipants.statusCounted|replace:'/':', '}"
templates/CRM/Event/Form/ManageEvent/Tab.tpl,"{$findParticipants.statusNotCounted|replace:'/':', '}"
templates/CRM/Event/Form/ManageEvent/Tab.tpl,{$participantListingURL}
templates/CRM/Event/Form/ManageEvent/Tab.tpl,{$title|json_encode}
templates/CRM/Event/Form/Participant.tpl,{$fldId}
templates/CRM/Event/Form/Participant.tpl,{$fldId}
templates/CRM/Event/Form/Participant.tpl,{$opId}
templates/CRM/Event/Form/Participant.tpl,{$partiallyPaidStatusId}
templates/CRM/Event/Form/Participant.tpl,{$ccModeLink}
templates/CRM/Event/Form/Participant.tpl,{$form.delete_participant.html}
templates/CRM/Event/Form/Participant.tpl,{$displayName}
templates/CRM/Event/Form/Participant.tpl,{$form.contact_id.label}
templates/CRM/Event/Form/Participant.tpl,{$form.contact_id.html}
templates/CRM/Event/Form/Participant.tpl,{$apURL}
templates/CRM/Event/Form/Participant.tpl,{$apName}
templates/CRM/Event/Form/Participant.tpl,{$registered_by_display_name}
templates/CRM/Event/Form/Participant.tpl,{$form.event_id.label}
templates/CRM/Event/Form/Participant.tpl,{$form.event_id.html}
templates/CRM/Event/Form/Participant.tpl,{$form.role_id.label}
templates/CRM/Event/Form/Participant.tpl,{$form.role_id.html}
templates/CRM/Event/Form/Participant.tpl,{$form.register_date.label}
templates/CRM/Event/Form/Participant.tpl,{$form.register_date.html}
templates/CRM/Event/Form/Participant.tpl,{$form.status_id.label}
templates/CRM/Event/Form/Participant.tpl,{$form.status_id.html}
templates/CRM/Event/Form/Participant.tpl,{$form.is_notify.html}
templates/CRM/Event/Form/Participant.tpl,{$form.is_notify.label}
templates/CRM/Event/Form/Participant.tpl,{$form.source.label}
templates/CRM/Event/Form/Participant.tpl,{$form.source.html|crmAddClass:huge}
templates/CRM/Event/Form/Participant.tpl,{$form.payment_processor_id.label}
templates/CRM/Event/Form/Participant.tpl,{$form.payment_processor_id.html}
templates/CRM/Event/Form/Participant.tpl,{$form.note.label}
templates/CRM/Event/Form/Participant.tpl,{$form.note.html}
templates/CRM/Event/Form/Participant.tpl,{$eventNameCustomDataTypeID}
templates/CRM/Event/Form/Participant.tpl,{$roleCustomDataTypeID}
templates/CRM/Event/Form/Participant.tpl,{$eventTypeCustomDataTypeID}
templates/CRM/Event/Form/Participant.tpl,{$form.formClass}
templates/CRM/Event/Form/Participant.tpl,{$eventNameCustomDataTypeID}
templates/CRM/Event/Form/Participant.tpl,{$eventTypeCustomDataTypeID}
templates/CRM/Event/Form/Participant.tpl,{$roleCustomDataTypeID}
templates/CRM/Event/Form/Participant.tpl,{$urlPathVar}
templates/CRM/Event/Form/Participant.tpl,{$participantId|@json_encode}
templates/CRM/Event/Form/Participant.tpl,{$customDataType}
templates/CRM/Event/Form/Participant.tpl,{$customDataType}
templates/CRM/Event/Form/Participant.tpl,{$eventID}
templates/CRM/Event/Form/Participant.tpl,{$eventNameCustomDataTypeID}
templates/CRM/Event/Form/Participant.tpl,{$customDataType}
templates/CRM/Event/Form/Participant.tpl,{$eventTypeID}
templates/CRM/Event/Form/Participant.tpl,{$eventTypeCustomDataTypeID}
templates/CRM/Event/Form/Participant.tpl,{$notificationStatusIds}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$optionFullTotalAmount}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$partiallyPaid}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$pendingRefund}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$participantStatus}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$feePaid}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$lineItemTotal}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$totalLineTotal}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$displayName}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$eventName}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$form.status_id.label}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$form.status_id.html}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$form.amount.label}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$paymentInfo.paid|crmMoney}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$form.send_receipt.html}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$form.from_email_address.label}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$form.from_email_address.html}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$form.receipt_text.label}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$form.receipt_text.html|crmAddClass:huge}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$form.note.label}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$form.note.html}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$form.formClass}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$partiallyPaid}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$pendingRefund}
templates/CRM/Event/Form/ParticipantFeeSelection.tpl,{$feePaid}
templates/CRM/Event/Form/ParticipantView.tpl,{$displayName}
templates/CRM/Event/Form/ParticipantView.tpl,{$registered_by_display_name}
templates/CRM/Event/Form/ParticipantView.tpl,{$apURL}
templates/CRM/Event/Form/ParticipantView.tpl,{$apName}
templates/CRM/Event/Form/ParticipantView.tpl,{$event}
templates/CRM/Event/Form/ParticipantView.tpl,{$campaign}
templates/CRM/Event/Form/ParticipantView.tpl,{$role}
templates/CRM/Event/Form/ParticipantView.tpl,{$register_date|crmDate}
templates/CRM/Event/Form/ParticipantView.tpl,{$status}
templates/CRM/Event/Form/ParticipantView.tpl,{$transferName}
templates/CRM/Event/Form/ParticipantView.tpl,{$source}
templates/CRM/Event/Form/ParticipantView.tpl,{$transferOrCancelLink}
templates/CRM/Event/Form/ParticipantView.tpl,{$fee_level}
templates/CRM/Event/Form/ParticipantView.tpl,{$fee_amount|crmMoney:$fee_currency}
templates/CRM/Event/Form/ParticipantView.tpl,{$rec|nl2br}
templates/CRM/Event/Form/Registration/AdditionalParticipant.tpl,{$skipCount}
templates/CRM/Event/Form/Registration/AdditionalParticipant.tpl,{$statusMessage}
templates/CRM/Event/Form/Registration/AdditionalParticipant.tpl,{$event.id}
templates/CRM/Event/Form/Registration/AdditionalParticipant.tpl,{$event.fee_label}
templates/CRM/Event/Form/Registration/AdditionalParticipant.tpl,{$event.fee_label}
templates/CRM/Event/Form/Registration/AdditionalParticipant.tpl,{$form.amount.html}
templates/CRM/Event/Form/Registration/AdditionalParticipant.tpl,{$formName}
templates/CRM/Event/Form/Registration/AdditionalParticipant.tpl,{$waitingMsg}
templates/CRM/Event/Form/Registration/AdditionalParticipant.tpl,{$confirmedMsg}
templates/CRM/Event/Form/Registration/AdditionalParticipant.tpl,{$paymentBypassed}
templates/CRM/Event/Form/Registration/AdditionalParticipant.tpl,{$availableRegistrations}
templates/CRM/Event/Form/Registration/AdditionalParticipant.tpl,{$currentParticipantCount}
templates/CRM/Event/Form/Registration/AdditionalParticipant.tpl,{$lastParticipant}
templates/CRM/Event/Form/Registration/Confirm.tpl,{$event.id}
templates/CRM/Event/Form/Registration/Confirm.tpl,{$pay_later_receipt}
templates/CRM/Event/Form/Registration/Confirm.tpl,{$event.confirm_text}
templates/CRM/Event/Form/Registration/Confirm.tpl,{$pcp_roll_nickname}
templates/CRM/Event/Form/Registration/Confirm.tpl,{$pcp_personal_note}
templates/CRM/Event/Form/Registration/Confirm.tpl,{$event.fee_label}
templates/CRM/Event/Form/Registration/Confirm.tpl,{$amount.amount|crmMoney}
templates/CRM/Event/Form/Registration/Confirm.tpl,{$amount.label}
templates/CRM/Event/Form/Registration/Confirm.tpl,{$taxTerm}
templates/CRM/Event/Form/Registration/Confirm.tpl,{$totalTaxAmount|crmMoney}
templates/CRM/Event/Form/Registration/Confirm.tpl,{$totalAmount|crmMoney}
templates/CRM/Event/Form/Registration/Confirm.tpl,{$hookDiscount.message}
templates/CRM/Event/Form/Registration/Confirm.tpl,{$event.participant_role}
templates/CRM/Event/Form/Registration/Confirm.tpl,{$billingName}
templates/CRM/Event/Form/Registration/Confirm.tpl,{$address|nl2br}
templates/CRM/Event/Form/Registration/Confirm.tpl,{$credit_card_type}
templates/CRM/Event/Form/Registration/Confirm.tpl,{$credit_card_number}
templates/CRM/Event/Form/Registration/Confirm.tpl,{$credit_card_exp_date|truncate:7:''|crmDate}
templates/CRM/Event/Form/Registration/Confirm.tpl,{$event.confirm_footer_text}
templates/CRM/Event/Form/Registration/DisplayProfile.tpl,{$primaryParticipantProfile.CustomPreGroupTitle}
templates/CRM/Event/Form/Registration/DisplayProfile.tpl,{$field}
templates/CRM/Event/Form/Registration/DisplayProfile.tpl,{$field}
templates/CRM/Event/Form/Registration/DisplayProfile.tpl,{$value}
templates/CRM/Event/Form/Registration/DisplayProfile.tpl,{$primaryParticipantProfile.CustomPostGroupTitle.$field.groupTitle}
templates/CRM/Event/Form/Registration/DisplayProfile.tpl,{$field}
templates/CRM/Event/Form/Registration/DisplayProfile.tpl,{$field}
templates/CRM/Event/Form/Registration/DisplayProfile.tpl,{$value}
templates/CRM/Event/Form/Registration/DisplayProfile.tpl,{$participant.additionalCustomPreGroupTitle}
templates/CRM/Event/Form/Registration/DisplayProfile.tpl,{$field}
templates/CRM/Event/Form/Registration/DisplayProfile.tpl,{$field}
templates/CRM/Event/Form/Registration/DisplayProfile.tpl,{$value}
templates/CRM/Event/Form/Registration/DisplayProfile.tpl,{$participant.additionalCustomPostGroupTitle.$field.groupTitle}
templates/CRM/Event/Form/Registration/DisplayProfile.tpl,{$field}
templates/CRM/Event/Form/Registration/DisplayProfile.tpl,{$field}
templates/CRM/Event/Form/Registration/DisplayProfile.tpl,{$value}
templates/CRM/Event/Form/Registration/EventInfoBlock.tpl,{$event.event_title}
templates/CRM/Event/Form/Registration/EventInfoBlock.tpl,{$event.event_title}
templates/CRM/Event/Form/Registration/EventInfoBlock.tpl,{$event.event_start_date|crmDate}
templates/CRM/Event/Form/Registration/EventInfoBlock.tpl,{$event.event_end_date|crmDate:0:1}
templates/CRM/Event/Form/Registration/EventInfoBlock.tpl,{$event.event_end_date|crmDate}
templates/CRM/Event/Form/Registration/EventInfoBlock.tpl,{$location.address.1.display|nl2br}
templates/CRM/Event/Form/Registration/EventInfoBlock.tpl,{$phone.phone_type_display}
templates/CRM/Event/Form/Registration/EventInfoBlock.tpl,{$phone.phone}
templates/CRM/Event/Form/Registration/EventInfoBlock.tpl,{$phone.phone_ext}
templates/CRM/Event/Form/Registration/EventInfoBlock.tpl,{$email.email}
templates/CRM/Event/Form/Registration/EventInfoBlock.tpl,{$email.email}
templates/CRM/Event/Form/Registration/ParticipantConfirm.tpl,{$statusMsg}
templates/CRM/Event/Form/Registration/Register.tpl,{$event.id}
templates/CRM/Event/Form/Registration/Register.tpl,{$requireApprovalMsg}
templates/CRM/Event/Form/Registration/Register.tpl,{$waitlistMsg}
templates/CRM/Event/Form/Registration/Register.tpl,{$event.intro_text}
templates/CRM/Event/Form/Registration/Register.tpl,{$pcpSupporterText}
templates/CRM/Event/Form/Registration/Register.tpl,{$form.additional_participants.label}
templates/CRM/Event/Form/Registration/Register.tpl,{$form.additional_participants.html}
templates/CRM/Event/Form/Registration/Register.tpl,{$event.fee_label}
templates/CRM/Event/Form/Registration/Register.tpl,{$form.pcp_display_in_roll.html}
templates/CRM/Event/Form/Registration/Register.tpl,{$form.pcp_display_in_roll.label}
templates/CRM/Event/Form/Registration/Register.tpl,{$form.pcp_is_anonymous.html}
templates/CRM/Event/Form/Registration/Register.tpl,{$form.pcp_roll_nickname.label}
templates/CRM/Event/Form/Registration/Register.tpl,{$form.pcp_roll_nickname.html}
templates/CRM/Event/Form/Registration/Register.tpl,{$form.pcp_personal_note.label}
templates/CRM/Event/Form/Registration/Register.tpl,{$form.pcp_personal_note.html}
templates/CRM/Event/Form/Registration/Register.tpl,{$form.payment_processor_id.label}
templates/CRM/Event/Form/Registration/Register.tpl,{$form.payment_processor_id.html}
templates/CRM/Event/Form/Registration/Register.tpl,{$event.footer_text}
templates/CRM/Event/Form/Registration/Register.tpl,{$availableRegistrations}
templates/CRM/Event/Form/Registration/Register.tpl,{$requireApprovalMsg}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$event.id}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$event.thankyou_text}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$friendURL}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$friendText|escape:'html'}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$friendText}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$pcpLink}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$pcpLinkText|escape:'html'}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$pcpLinkText}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$pay_later_receipt}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$event.fee_label}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$amount.amount|crmMoney}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$amount.label}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$totalTaxAmount|crmMoney}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$totalAmount|crmMoney}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$hookDiscount.message}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$receive_date|crmDate}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$trxn_id}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$mail}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$event.participant_role}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$billingName}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$address|nl2br}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$credit_card_type}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$credit_card_number}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$credit_card_exp_date|truncate:7:''|crmDate}
templates/CRM/Event/Form/Registration/ThankYou.tpl,{$event.thankyou_footer_text}
templates/CRM/Event/Form/Search/Common.tpl,{$form.event_id.label}
templates/CRM/Event/Form/Search/Common.tpl,{$form.event_id.html|crmAddClass:huge}
templates/CRM/Event/Form/Search/Common.tpl,{$form.event_include_repeating_events.label}
templates/CRM/Event/Form/Search/Common.tpl,{$form.event_include_repeating_events.html}
templates/CRM/Event/Form/Search/Common.tpl,{$form.event_type_id.label}
templates/CRM/Event/Form/Search/Common.tpl,{$form.event_type_id.html}
templates/CRM/Event/Form/Search/Common.tpl,{$form.participant_status_id.label}
templates/CRM/Event/Form/Search/Common.tpl,{$form.participant_status_id.html}
templates/CRM/Event/Form/Search/Common.tpl,{$form.participant_role_id.label}
templates/CRM/Event/Form/Search/Common.tpl,{$form.participant_role_id.html}
templates/CRM/Event/Form/Search/Common.tpl,{$form.participant_test.label}
templates/CRM/Event/Form/Search/Common.tpl,{$form.participant_test.html}
templates/CRM/Event/Form/Search/Common.tpl,{$form.participant_is_pay_later.label}
templates/CRM/Event/Form/Search/Common.tpl,{$form.participant_is_pay_later.html}
templates/CRM/Event/Form/Search/Common.tpl,{$form.participant_fee_id.label}
templates/CRM/Event/Form/Search/Common.tpl,{$form.participant_fee_id.html}
templates/CRM/Event/Form/Search/Common.tpl,{$form.participant_fee_amount_low.label}
templates/CRM/Event/Form/Search/Common.tpl,{$form.participant_fee_amount_low.html}
templates/CRM/Event/Form/Search/Common.tpl,{$form.participant_fee_amount_high.label}
templates/CRM/Event/Form/Search/Common.tpl,{$form.participant_fee_amount_high.html}
templates/CRM/Event/Form/SearchEvent.tpl,{$form.title.label}
templates/CRM/Event/Form/SearchEvent.tpl,{$form.title.html|crmAddClass:twenty}
templates/CRM/Event/Form/SearchEvent.tpl,{$form.event_type_id.html}
templates/CRM/Event/Form/SearchEvent.tpl,{$form.eventsByDates.html}
templates/CRM/Event/Form/SearchEvent.tpl,{$form.start_date.label}
templates/CRM/Event/Form/SearchEvent.tpl,{$form.start_date.html}
templates/CRM/Event/Form/SearchEvent.tpl,{$form.end_date.label}
templates/CRM/Event/Form/SearchEvent.tpl,{$form.end_date.html}
templates/CRM/Event/Form/Selector.tpl,{$form.toggleSelect.html}
templates/CRM/Event/Form/Selector.tpl,{$sort->_response.$key.link}
templates/CRM/Event/Form/Selector.tpl,{$header.name}
templates/CRM/Event/Form/Selector.tpl,{$row.participant_id}
templates/CRM/Event/Form/Selector.tpl,{$row.event_id}
templates/CRM/Event/Form/Selector.tpl,{$form.$cbName.html}
templates/CRM/Event/Form/Selector.tpl,{$row.contact_type}
templates/CRM/Event/Form/Selector.tpl,{$row.sort_name}
templates/CRM/Event/Form/Selector.tpl,{$row.event_title}
templates/CRM/Event/Form/Selector.tpl,{$line.label}
templates/CRM/Event/Form/Selector.tpl,{$line.field_title}
templates/CRM/Event/Form/Selector.tpl,{$line.label}
templates/CRM/Event/Form/Selector.tpl,{$line.qty}
templates/CRM/Event/Form/Selector.tpl,{$row.participant_fee_level}
templates/CRM/Event/Form/Selector.tpl,{$row.participant_fee_amount|crmMoney:$row.participant_fee_currency}
templates/CRM/Event/Form/Selector.tpl,{$row.participant_register_date|truncate:10:''|crmDate}
templates/CRM/Event/Form/Selector.tpl,{$row.event_start_date|truncate:10:''|crmDate}
templates/CRM/Event/Form/Selector.tpl,{$row.event_end_date|truncate:10:''|crmDate}
templates/CRM/Event/Form/Selector.tpl,{$row.participant_status_id}
templates/CRM/Event/Form/Selector.tpl,{$row.participant_status}
templates/CRM/Event/Form/Selector.tpl,{$row.participant_role_id}
templates/CRM/Event/Form/Selector.tpl,{$row.action|replace:'xx':$participant_id}
templates/CRM/Event/Form/SelfSvcTransfer.tpl,{$details.name}
templates/CRM/Event/Form/SelfSvcTransfer.tpl,{$details.title}
templates/CRM/Event/Form/SelfSvcTransfer.tpl,{$details.event_start_date|truncate:10:''|crmDate}
templates/CRM/Event/Form/SelfSvcTransfer.tpl,{$details.fee_level}
templates/CRM/Event/Form/SelfSvcTransfer.tpl,{$details.fee_amount}
templates/CRM/Event/Form/SelfSvcTransfer.tpl,{$details.register_date|truncate:10:''|crmDate}
templates/CRM/Event/Form/SelfSvcTransfer.tpl,{$details.status}
templates/CRM/Event/Form/SelfSvcTransfer.tpl,{$details.role}
templates/CRM/Event/Form/SelfSvcTransfer.tpl,{$form.contact_id.label}
templates/CRM/Event/Form/SelfSvcTransfer.tpl,{$form.contact_id.html}
templates/CRM/Event/Form/SelfSvcTransfer.tpl,{$form.first_name.label}
templates/CRM/Event/Form/SelfSvcTransfer.tpl,{$form.first_name.html}
templates/CRM/Event/Form/SelfSvcTransfer.tpl,{$form.last_name.label}
templates/CRM/Event/Form/SelfSvcTransfer.tpl,{$form.last_name.html}
templates/CRM/Event/Form/SelfSvcTransfer.tpl,{$form.email.label}
templates/CRM/Event/Form/SelfSvcTransfer.tpl,{$form.email.html}
templates/CRM/Event/Form/SelfSvcUpdate.tpl,{$details.name}
templates/CRM/Event/Form/SelfSvcUpdate.tpl,{$details.title}
templates/CRM/Event/Form/SelfSvcUpdate.tpl,{$details.event_start_date|truncate:10:''|crmDate}
templates/CRM/Event/Form/SelfSvcUpdate.tpl,{$details.fee_level}
templates/CRM/Event/Form/SelfSvcUpdate.tpl,{$details.fee_amount}
templates/CRM/Event/Form/SelfSvcUpdate.tpl,{$details.register_date|truncate:10:''|crmDate}
templates/CRM/Event/Form/SelfSvcUpdate.tpl,{$details.status}
templates/CRM/Event/Form/SelfSvcUpdate.tpl,{$details.role}
templates/CRM/Event/Form/SelfSvcUpdate.tpl,{$form.action.label}
templates/CRM/Event/Form/SelfSvcUpdate.tpl,{$form.action.html}
templates/CRM/Event/Form/SelfSvcUpdate.tpl,{$contributionId}
templates/CRM/Event/Form/Task/AddToGroup.tpl,{$form.group_id.html}
templates/CRM/Event/Form/Task/AddToGroup.tpl,{$form.group_option.html}
templates/CRM/Event/Form/Task/AddToGroup.tpl,{$form.group_id.label}
templates/CRM/Event/Form/Task/AddToGroup.tpl,{$form.group_id.html}
templates/CRM/Event/Form/Task/AddToGroup.tpl,{$form.title.label}
templates/CRM/Event/Form/Task/AddToGroup.tpl,{$form.title.html}
templates/CRM/Event/Form/Task/AddToGroup.tpl,{$form.description.label}
templates/CRM/Event/Form/Task/AddToGroup.tpl,{$form.description.html}
templates/CRM/Event/Form/Task/AddToGroup.tpl,{$form.group_type.label}
templates/CRM/Event/Form/Task/AddToGroup.tpl,{$form.group_type.html}
templates/CRM/Event/Form/Task/Badge.tpl,{$form.badge_id.label}
templates/CRM/Event/Form/Task/Badge.tpl,{$form.badge_id.html}
templates/CRM/Event/Form/Task/Batch.tpl,{$form.status_change.html}
templates/CRM/Event/Form/Task/Batch.tpl,{$status}
templates/CRM/Event/Form/Task/Batch.tpl,{$fTitle}
templates/CRM/Event/Form/Task/Batch.tpl,{$config->resourceBase}
templates/CRM/Event/Form/Task/Batch.tpl,{$field.name}
templates/CRM/Event/Form/Task/Batch.tpl,{$field.title}
templates/CRM/Event/Form/Task/Batch.tpl,{$pid}
templates/CRM/Event/Form/Task/Batch.tpl,{$contactDetails.$pid.$fName}
templates/CRM/Event/Form/Task/Batch.tpl,{$details.$pid.title}
templates/CRM/Event/Form/Task/Batch.tpl,{$form.field.$pid.$n.$optionKey.html}
templates/CRM/Event/Form/Task/Batch.tpl,{$form.field.$pid.$n.html}
templates/CRM/Event/Form/Task/Batch.tpl,{$form._qf_Batch_refresh.html}
templates/CRM/Event/Form/Task/Delete.tpl,{$form.delete_participant.html}
templates/CRM/Event/Form/Task/PickProfile.tpl,{$form.uf_group_id.label}
templates/CRM/Event/Form/Task/PickProfile.tpl,{$form.uf_group_id.html}
templates/CRM/Event/Form/Task/Print.tpl,{$row.sort_name}
templates/CRM/Event/Form/Task/Print.tpl,{$row.event_title}
templates/CRM/Event/Form/Task/Print.tpl,{$line.label}
templates/CRM/Event/Form/Task/Print.tpl,{$line.qty}
templates/CRM/Event/Form/Task/Print.tpl,{$row.participant_fee_level}
templates/CRM/Event/Form/Task/Print.tpl,{$row.participant_fee_amount|crmMoney}
templates/CRM/Event/Form/Task/Print.tpl,{$row.event_start_date|truncate:10:''|crmDate}
templates/CRM/Event/Form/Task/Print.tpl,{$row.event_end_date|truncate:10:''|crmDate}
templates/CRM/Event/Form/Task/Print.tpl,{$row.participant_status}
templates/CRM/Event/Form/Task/Print.tpl,{$row.participant_role_id}
templates/CRM/Event/Form/Task/SaveSearch.tpl,{$criteria}
templates/CRM/Event/Form/Task/SaveSearch.tpl,{$form.title.label}
templates/CRM/Event/Form/Task/SaveSearch.tpl,{$form.title.html}
templates/CRM/Event/Form/Task/SaveSearch.tpl,{$form.description.label}
templates/CRM/Event/Form/Task/SaveSearch.tpl,{$form.description.html}
templates/CRM/Event/Form/Task/SearchTaskHookSample.tpl,{$row.display_name}
templates/CRM/Event/Form/Task/SearchTaskHookSample.tpl,{$row.amount}
templates/CRM/Event/Form/Task/SearchTaskHookSample.tpl,{$row.register_date}
templates/CRM/Event/Form/Task/SearchTaskHookSample.tpl,{$row.source}
templates/CRM/Event/Form/Task.tpl,{$row.displayName}
templates/CRM/Event/Import/Form/DataSource.tpl,{$form.uploadFile.label}
templates/CRM/Event/Import/Form/DataSource.tpl,{$form.uploadFile.html}
templates/CRM/Event/Import/Form/DataSource.tpl,{$form.skipColumnHeader.html}
templates/CRM/Event/Import/Form/DataSource.tpl,{$form.skipColumnHeader.label}
templates/CRM/Event/Import/Form/DataSource.tpl,{$form.contactType.label}
templates/CRM/Event/Import/Form/DataSource.tpl,{$form.contactType.html}
templates/CRM/Event/Import/Form/DataSource.tpl,{$form.onDuplicate.label}
templates/CRM/Event/Import/Form/DataSource.tpl,{$form.onDuplicate.html}
templates/CRM/Event/Import/Form/DataSource.tpl,{$form.fieldSeparator.label}
templates/CRM/Event/Import/Form/DataSource.tpl,{$form.fieldSeparator.html}
templates/CRM/Event/Import/Form/DataSource.tpl,{$form.savedMapping.html}
templates/CRM/Event/Import/Form/MapField.tpl,{$initHideBoxes}
templates/CRM/Event/Import/Form/MapTable.tpl,{$dataValues[$j][$i]}
templates/CRM/Event/Import/Form/MapTable.tpl,{$mapper[$i]}
templates/CRM/Event/Import/Form/MapTable.tpl,{$form.mapper[$i].html}
templates/CRM/Event/Import/Form/MapTable.tpl,{$form.updateMapping.html}
templates/CRM/Event/Import/Form/MapTable.tpl,{$form.updateMapping.label}
templates/CRM/Event/Import/Form/MapTable.tpl,{$form.saveMapping.html}
templates/CRM/Event/Import/Form/MapTable.tpl,{$form.saveMapping.label}
templates/CRM/Event/Import/Form/MapTable.tpl,{$form.saveMappingName.label}
templates/CRM/Event/Import/Form/MapTable.tpl,{$form.saveMappingName.html}
templates/CRM/Event/Import/Form/MapTable.tpl,{$form.saveMappingDesc.label}
templates/CRM/Event/Import/Form/MapTable.tpl,{$form.saveMappingDesc.html}
templates/CRM/Event/Import/Form/Preview.tpl,{$totalRowCount}
templates/CRM/Event/Import/Form/Preview.tpl,{$invalidRowCount}
templates/CRM/Event/Import/Form/Preview.tpl,{$downloadErrorRecordsUrl}
templates/CRM/Event/Import/Form/Preview.tpl,{$conflictRowCount}
templates/CRM/Event/Import/Form/Preview.tpl,{$downloadConflictRecordsUrl}
templates/CRM/Event/Import/Form/Preview.tpl,{$validRowCount}
templates/CRM/Event/Import/Form/Summary.tpl,{$dupeActionString}
templates/CRM/Event/Import/Form/Summary.tpl,{$totalRowCount}
templates/CRM/Event/Import/Form/Summary.tpl,{$invalidRowCount}
templates/CRM/Event/Import/Form/Summary.tpl,{$downloadErrorRecordsUrl}
templates/CRM/Event/Import/Form/Summary.tpl,{$unMatchCount}
templates/CRM/Event/Import/Form/Summary.tpl,{$downloadMismatchRecordsUrl}
templates/CRM/Event/Import/Form/Summary.tpl,{$conflictRowCount}
templates/CRM/Event/Import/Form/Summary.tpl,{$downloadConflictRecordsUrl}
templates/CRM/Event/Import/Form/Summary.tpl,{$duplicateRowCount}
templates/CRM/Event/Import/Form/Summary.tpl,{$dupeActionString}
templates/CRM/Event/Import/Form/Summary.tpl,{$downloadDuplicateRecordsUrl}
templates/CRM/Event/Import/Form/Summary.tpl,{$validRowCount}
templates/CRM/Event/Page/DashBoard.tpl,{$configPagesURL}
templates/CRM/Event/Page/DashBoard.tpl,{$newEventURL}
templates/CRM/Event/Page/DashBoard.tpl,{$htmlFeed}
templates/CRM/Event/Page/DashBoard.tpl,{$rssFeed}
templates/CRM/Event/Page/DashBoard.tpl,{$icalFile}
templates/CRM/Event/Page/DashBoard.tpl,{$icalFeed}
templates/CRM/Event/Page/DashBoard.tpl,{$id}
templates/CRM/Event/Page/DashBoard.tpl,{$values.eventTitle}
templates/CRM/Event/Page/DashBoard.tpl,{$id}
templates/CRM/Event/Page/DashBoard.tpl,{$values.eventType}
templates/CRM/Event/Page/DashBoard.tpl,{$values.isPublic}
templates/CRM/Event/Page/DashBoard.tpl,{$values.startDate}
templates/CRM/Event/Page/DashBoard.tpl,{$values.endDate}
templates/CRM/Event/Page/DashBoard.tpl,{$values.participants_url}
templates/CRM/Event/Page/DashBoard.tpl,{$values.participants}
templates/CRM/Event/Page/DashBoard.tpl,{$values.participants}
templates/CRM/Event/Page/DashBoard.tpl,{$values.notCountedParticipants_url}
templates/CRM/Event/Page/DashBoard.tpl,{$values.notCountedParticipants}
templates/CRM/Event/Page/DashBoard.tpl,{$values.notCountedParticipants}
templates/CRM/Event/Page/DashBoard.tpl,{$values.notCountedDueToStatus_url}
templates/CRM/Event/Page/DashBoard.tpl,{$values.notCountedDueToStatus}
templates/CRM/Event/Page/DashBoard.tpl,{$values.notCountedDueToStatus}
templates/CRM/Event/Page/DashBoard.tpl,{$values.notCountedDueToRole_url}
templates/CRM/Event/Page/DashBoard.tpl,{$values.notCountedDueToRole}
templates/CRM/Event/Page/DashBoard.tpl,{$values.notCountedDueToRole}
templates/CRM/Event/Page/DashBoard.tpl,{$status.url}
templates/CRM/Event/Page/DashBoard.tpl,{$status.label}
templates/CRM/Event/Page/DashBoard.tpl,{$status.count}
templates/CRM/Event/Page/DashBoard.tpl,{$values.isMap}
templates/CRM/Event/Page/DashBoard.tpl,{$id}
templates/CRM/Event/Page/DashBoard.tpl,{$id}
templates/CRM/Event/Page/DashBoard.tpl,{$v.title|escape}
templates/CRM/Event/Page/DashBoard.tpl,{$status}
templates/CRM/Event/Page/DashBoard.tpl,{$v.title}
templates/CRM/Event/Page/DashBoard.tpl,{$v.title|escape}
templates/CRM/Event/Page/DashBoard.tpl,{$status}
templates/CRM/Event/Page/DashBoard.tpl,{$v.title}
templates/CRM/Event/Page/EventInfo.tpl,{$link.title}
templates/CRM/Event/Page/EventInfo.tpl,{$link.title}
templates/CRM/Event/Page/EventInfo.tpl,"{$findParticipants.statusCounted|replace:'/':', '}"
templates/CRM/Event/Page/EventInfo.tpl,"{$findParticipants.statusNotCounted|replace:'/':', '}"
templates/CRM/Event/Page/EventInfo.tpl,{$participantListingURL}
templates/CRM/Event/Page/EventInfo.tpl,{$event.id}
templates/CRM/Event/Page/EventInfo.tpl,{$registerURL}
templates/CRM/Event/Page/EventInfo.tpl,{$registerText|escape:'html'}
templates/CRM/Event/Page/EventInfo.tpl,{$registerText}
templates/CRM/Event/Page/EventInfo.tpl,{$event.summary}
templates/CRM/Event/Page/EventInfo.tpl,{$event.description}
templates/CRM/Event/Page/EventInfo.tpl,{$event.event_start_date|crmDate}
templates/CRM/Event/Page/EventInfo.tpl,{$event.event_start_date|crmDate}
templates/CRM/Event/Page/EventInfo.tpl,{$event.event_end_date|crmDate:0:1}
templates/CRM/Event/Page/EventInfo.tpl,{$event.event_end_date|crmDate:0:1}
templates/CRM/Event/Page/EventInfo.tpl,{$event.event_end_date|crmDate}
templates/CRM/Event/Page/EventInfo.tpl,{$event.event_end_date|crmDate}
templates/CRM/Event/Page/EventInfo.tpl,{$location.address.1.display|nl2br}
templates/CRM/Event/Page/EventInfo.tpl,{$mapURL}
templates/CRM/Event/Page/EventInfo.tpl,{$phone.phone_type_display}
templates/CRM/Event/Page/EventInfo.tpl,{$phone.phone}
templates/CRM/Event/Page/EventInfo.tpl,{$phone.phone_ext}
templates/CRM/Event/Page/EventInfo.tpl,{$email.email}
templates/CRM/Event/Page/EventInfo.tpl,{$email.email}
templates/CRM/Event/Page/EventInfo.tpl,{$event.fee_label}
templates/CRM/Event/Page/EventInfo.tpl,{$lClass}
templates/CRM/Event/Page/EventInfo.tpl,{$feeBlock.label.$idx}
templates/CRM/Event/Page/EventInfo.tpl,{$feeBlock.value.$idx}
templates/CRM/Event/Page/EventInfo.tpl,{$feeBlock.value.$idx|crmMoney}
templates/CRM/Event/Page/EventInfo.tpl,{$registerURL}
templates/CRM/Event/Page/EventInfo.tpl,{$registerText|escape:'html'}
templates/CRM/Event/Page/EventInfo.tpl,{$registerText}
templates/CRM/Event/Page/ICalendar.tpl,{$row.class}
templates/CRM/Event/Page/ICalendar.tpl,{$event.title}
templates/CRM/Event/Page/ICalendar.tpl,{$event.summary}
templates/CRM/Event/Page/ICalendar.tpl,{$event.start_date|crmDate:'%Y-%m-%d'}
templates/CRM/Event/Page/ICalendar.tpl,{$event.start_date|crmDate}
templates/CRM/Event/Page/ICalendar.tpl,{$event.end_date|crmDate:0:1}
templates/CRM/Event/Page/ICalendar.tpl,{$event.end_date|crmDate}
templates/CRM/Event/Page/ICalendar.tpl,{$event.location}
templates/CRM/Event/Page/ICalendar.tpl,{$event.event_type}
templates/CRM/Event/Page/ICalendar.tpl,{$event.contact_email}
templates/CRM/Event/Page/ICalendar.tpl,{$event.contact_email}
templates/CRM/Event/Page/ICalendar.tpl,{$event.registration_link}
templates/CRM/Event/Page/ICalendar.tpl,{$event.registration_link_text}
templates/CRM/Event/Page/iCalLinks.tpl,{$icalFile}
templates/CRM/Event/Page/iCalLinks.tpl,{$config->resourceBase}
templates/CRM/Event/Page/iCalLinks.tpl,{$icalFeed}
templates/CRM/Event/Page/iCalLinks.tpl,{$config->resourceBase}
templates/CRM/Event/Page/ManageEvent.tpl,{$htmlFeed}
templates/CRM/Event/Page/ManageEvent.tpl,{$rssFeed}
templates/CRM/Event/Page/ManageEvent.tpl,{$icalFile}
templates/CRM/Event/Page/ManageEvent.tpl,{$icalFeed}
templates/CRM/Event/Page/ManageEvent.tpl,{$newEventURL}
templates/CRM/Event/Page/ManageEvent.tpl,{$row.id}
templates/CRM/Event/Page/ManageEvent.tpl,{$row.id}
templates/CRM/Event/Page/ManageEvent.tpl,{$row.title}
templates/CRM/Event/Page/ManageEvent.tpl,{$row.id}
templates/CRM/Event/Page/ManageEvent.tpl,{$row.repeat}
templates/CRM/Event/Page/ManageEvent.tpl,{$row.city}
templates/CRM/Event/Page/ManageEvent.tpl,{$row.state_province}
templates/CRM/Event/Page/ManageEvent.tpl,{$row.event_type}
templates/CRM/Event/Page/ManageEvent.tpl,{$row.start_date|crmDate:'%Y-%m-%d'}
templates/CRM/Event/Page/ManageEvent.tpl,"{$row.start_date|crmDate:""%b %d, %Y %l:%M %P""}"
templates/CRM/Event/Page/ManageEvent.tpl,{$row.end_date|crmDate:'%Y-%m-%d'}
templates/CRM/Event/Page/ManageEvent.tpl,"{$row.end_date|crmDate:""%b %d, %Y %l:%M %P""}"
templates/CRM/Event/Page/ManageEvent.tpl,{$row.campaign}
templates/CRM/Event/Page/ManageEvent.tpl,{$row.id}
templates/CRM/Event/Page/ManageEvent.tpl,{$row.id}
templates/CRM/Event/Page/ManageEvent.tpl,{$row.id}
templates/CRM/Event/Page/ManageEvent.tpl,{$v.title|escape:'html'}
templates/CRM/Event/Page/ManageEvent.tpl,{$status}
templates/CRM/Event/Page/ManageEvent.tpl,{$v.title}
templates/CRM/Event/Page/ManageEvent.tpl,{$v.title|escape:'html'}
templates/CRM/Event/Page/ManageEvent.tpl,{$status}
templates/CRM/Event/Page/ManageEvent.tpl,{$v.title}
templates/CRM/Event/Page/ManageEvent.tpl,{$row.id}
templates/CRM/Event/Page/ManageEvent.tpl,{$row.id}
templates/CRM/Event/Page/ManageEvent.tpl,{$findParticipants.statusCounted}
templates/CRM/Event/Page/ManageEvent.tpl,{$findParticipants.statusNotCounted}
templates/CRM/Event/Page/ManageEvent.tpl,{$row.eventlinks|replace:'xx':$row.id}
templates/CRM/Event/Page/ManageEvent.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Event/Page/ManageEvent.tpl,{$row.start_date|crmDate}
templates/CRM/Event/Page/ManageEvent.tpl,{$row.end_date|crmDate}
templates/CRM/Event/Page/ParticipantListing/Name.tpl,{$sort->_response.$key.link}
templates/CRM/Event/Page/ParticipantListing/Name.tpl,{$header.name}
templates/CRM/Event/Page/ParticipantListing/Name.tpl,{$row.name}
templates/CRM/Event/Page/ParticipantListing/NameAndEmail.tpl,{$sort->_response.$key.link}
templates/CRM/Event/Page/ParticipantListing/NameAndEmail.tpl,{$header.name}
templates/CRM/Event/Page/ParticipantListing/NameAndEmail.tpl,{$row.name}
templates/CRM/Event/Page/ParticipantListing/NameAndEmail.tpl,{$row.email}
templates/CRM/Event/Page/ParticipantListing/NameStatusAndDate.tpl,{$sort->_response.$key.link}
templates/CRM/Event/Page/ParticipantListing/NameStatusAndDate.tpl,{$header.name}
templates/CRM/Event/Page/ParticipantListing/NameStatusAndDate.tpl,{$row.name}
templates/CRM/Event/Page/ParticipantListing/NameStatusAndDate.tpl,{$row.status}
templates/CRM/Event/Page/ParticipantListing/NameStatusAndDate.tpl,{$row.date}
templates/CRM/Event/Page/Tab.tpl,{$newEventURL}
templates/CRM/Event/Page/Tab.tpl,{$newCreditURL}
templates/CRM/Event/Page/Tab.tpl,{$newEventURL}
templates/CRM/Event/Page/Tab.tpl,{$newCreditURL}
templates/CRM/Event/Page/UserDashboard.tpl,{$row.participant_id}
templates/CRM/Event/Page/UserDashboard.tpl,{$row.participant_id}
templates/CRM/Event/Page/UserDashboard.tpl,{$row.event_id}
templates/CRM/Event/Page/UserDashboard.tpl,{$row.event_title}
templates/CRM/Event/Page/UserDashboard.tpl,{$row.event_start_date|crmDate}
templates/CRM/Event/Page/UserDashboard.tpl,{$row.event_end_date|crmDate:0:1}
templates/CRM/Event/Page/UserDashboard.tpl,{$row.event_end_date|crmDate}
templates/CRM/Event/Page/UserDashboard.tpl,{$row.participant_status}
templates/CRM/Export/Form/Map.tpl,{$initHideBoxes}
templates/CRM/Export/Form/Select.tpl,{$form.exportOption.html}
templates/CRM/Export/Form/Select.tpl,{$form.mapping.label}
templates/CRM/Export/Form/Select.tpl,{$form.mapping.html}
templates/CRM/Export/Form/Select.tpl,{$form.mergeOption.html}
templates/CRM/Export/Form/Select.tpl,{$form.postal_greeting.label}
templates/CRM/Export/Form/Select.tpl,{$form.postal_greeting.html}
templates/CRM/Export/Form/Select.tpl,{$form.postal_greeting_other.label}
templates/CRM/Export/Form/Select.tpl,{$form.postal_greeting_other.html}
templates/CRM/Export/Form/Select.tpl,{$form.addressee.label}
templates/CRM/Export/Form/Select.tpl,{$form.addressee.html}
templates/CRM/Export/Form/Select.tpl,{$form.addressee_other.label}
templates/CRM/Export/Form/Select.tpl,{$form.addressee_other.html}
templates/CRM/Export/Form/Select.tpl,{$form.merge_same_household.html}
templates/CRM/Export/Form/Select.tpl,{$form.postal_mailing_export.label}
templates/CRM/Export/Form/Select.tpl,{$form.postal_mailing_export.html}
templates/CRM/Export/Form/Select.tpl,{$form.additional_group.label}
templates/CRM/Export/Form/Select.tpl,{$form.additional_group.html}
templates/CRM/Export/Form/Select.tpl,{$matchingContacts}
templates/CRM/Export/Form/table.tpl,{$form.mapper.1[$i].html}
templates/CRM/Export/Form/table.tpl,{$form.addMore.1.html}
templates/CRM/Export/Form/table.tpl,{$form.updateMapping.html}
templates/CRM/Export/Form/table.tpl,{$form.updateMapping.label}
templates/CRM/Export/Form/table.tpl,{$form.saveMapping.html}
templates/CRM/Export/Form/table.tpl,{$form.saveMapping.label}
templates/CRM/Export/Form/table.tpl,{$form.saveMappingName.label}
templates/CRM/Export/Form/table.tpl,{$form.saveMappingName.html}
templates/CRM/Export/Form/table.tpl,{$form.saveMappingDesc.label}
templates/CRM/Export/Form/table.tpl,{$form.saveMappingDesc.html}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$acct.name}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$acct.type}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$acct.description}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$acct.account_code}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$contact.name}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$contact.first_name}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$contact.last_name}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$je.to_account.trxn_id}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$je.to_account.trxn_date}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$je.to_account.account_name}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$je.to_account.contact_name}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$je.to_account.amount}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$je.to_account.check_number}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$je.to_account.payment_instrument}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$spl.spl_id}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$spl.trxn_date}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$spl.account_name}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$spl.contact_name}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$spl.amount}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$spl.check_number}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$spl.description}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$tabchar}
templates/CRM/Financial/ExportFormat/IIF.tpl,{$spl.payment_instrument}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$form.sort_name.label}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$form.sort_name.html|crmAddClass:'twenty'}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$form.contact_tags.html}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$form.group.html}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$form.trans_assign.html}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$form.submit.html}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$entityID}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$form.toggleSelect.html}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$statusID}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$paymentInstrumentID}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$entityID}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$entityID}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$entityID}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$entityID}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$entityID}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$entityID}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$entityID}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$entityID}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$entityID}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$entityID}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$entityID}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$entityID}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$entityID}
templates/CRM/Financial/Form/BatchTransaction.tpl,{$entityID}
templates/CRM/Financial/Form/Export.tpl,{$batchName}
templates/CRM/Financial/Form/Export.tpl,{$form.export_format.html}
templates/CRM/Financial/Form/Export.tpl,{$form.buttons.html}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$delName}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.name.label}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.name.html}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.description.label}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.description.html}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.contact_id.label}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.contact_id.html}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.financial_account_type_id.label}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.financial_account_type_id.html}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.accounting_code.label}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.accounting_code.html}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.account_type_code.label}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.account_type_code.html}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.is_deductible.label}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.is_deductible.html}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.is_active.label}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.is_active.html}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.is_tax.label}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.is_tax.html}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.tax_rate.label}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.tax_rate.html}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.is_default.label}
templates/CRM/Financial/Form/FinancialAccount.tpl,{$form.is_default.html}
templates/CRM/Financial/Form/FinancialBatch.tpl,{$form.title.label}
templates/CRM/Financial/Form/FinancialBatch.tpl,{$form.title.html}
templates/CRM/Financial/Form/FinancialBatch.tpl,{$form.description.label}
templates/CRM/Financial/Form/FinancialBatch.tpl,{$form.description.html}
templates/CRM/Financial/Form/FinancialBatch.tpl,{$contactName}
templates/CRM/Financial/Form/FinancialBatch.tpl,{$created_date|crmDate}
templates/CRM/Financial/Form/FinancialBatch.tpl,{$modified_date|crmDate}
templates/CRM/Financial/Form/FinancialBatch.tpl,{$form.status_id.label}
templates/CRM/Financial/Form/FinancialBatch.tpl,{$form.status_id.html}
templates/CRM/Financial/Form/FinancialBatch.tpl,{$form.payment_instrument_id.label}
templates/CRM/Financial/Form/FinancialBatch.tpl,{$form.payment_instrument_id.html}
templates/CRM/Financial/Form/FinancialBatch.tpl,{$form.item_count.label}
templates/CRM/Financial/Form/FinancialBatch.tpl,{$form.item_count.html|crmAddClass:number}
templates/CRM/Financial/Form/FinancialBatch.tpl,{$form.total.label}
templates/CRM/Financial/Form/FinancialBatch.tpl,{$form.total.html|crmAddClass:number}
templates/CRM/Financial/Form/FinancialTypeAccount.tpl,{$form.account_relationship.label}
templates/CRM/Financial/Form/FinancialTypeAccount.tpl,{$form.account_relationship.html}
templates/CRM/Financial/Form/FinancialTypeAccount.tpl,{$form.financial_account_id.label}
templates/CRM/Financial/Form/FinancialTypeAccount.tpl,{$form.financial_account_id.html}
templates/CRM/Financial/Form/PaymentEdit.tpl,{$name}
templates/CRM/Financial/Form/PaymentEdit.tpl,{$form.$name.label}
templates/CRM/Financial/Form/PaymentEdit.tpl,{$currency}
templates/CRM/Financial/Form/PaymentEdit.tpl,{$form.$name.html}
templates/CRM/Financial/Form/PaypalExpress.tpl,{$expressButtonName}
templates/CRM/Financial/Form/PaypalExpress.tpl,{$form.$expressButtonName.html}
templates/CRM/Financial/Form/PaypalPro.tpl,{$form.$expressButtonName.name}
templates/CRM/Financial/Form/PaypalPro.tpl,{$form.$expressButtonName.html}
templates/CRM/Financial/Form/Search.tpl,{$element}
templates/CRM/Financial/Form/Search.tpl,{$form.$element.label}
templates/CRM/Financial/Form/Search.tpl,{$form.$element.html}
templates/CRM/Financial/Form/Search.tpl,{$form.batch_update.html}
templates/CRM/Financial/Form/Search.tpl,{$form.submit.html}
templates/CRM/Financial/Form/Search.tpl,{$batchStatus}
templates/CRM/Financial/Form/Search.tpl,{$form.toggleSelect.html}
templates/CRM/Financial/Form/Search.tpl,{$batchStatus}
templates/CRM/Financial/Form/Search.tpl,{$batchStatus}
templates/CRM/Financial/Page/BatchTransaction.tpl,{$head}
templates/CRM/Financial/Page/BatchTransaction.tpl,{$rowKey}
templates/CRM/Financial/Page/BatchTransaction.tpl,{$form.close_batch.html}
templates/CRM/Financial/Page/BatchTransaction.tpl,{$form.export_batch.html}
templates/CRM/Financial/Page/BatchTransaction.tpl,{$form.trans_remove.html}
templates/CRM/Financial/Page/BatchTransaction.tpl,{$form.rSubmit.html}
templates/CRM/Financial/Page/BatchTransaction.tpl,{$entityID}
templates/CRM/Financial/Page/BatchTransaction.tpl,{$form.toggleSelects.html}
templates/CRM/Financial/Page/BatchTransaction.tpl,{$entityID}
templates/CRM/Financial/Page/BatchTransaction.tpl,{$entityID}
templates/CRM/Financial/Page/FinancialAccount.tpl,{$row.id}
templates/CRM/Financial/Page/FinancialAccount.tpl,{$row.class}
templates/CRM/Financial/Page/FinancialAccount.tpl,{$row.name}
templates/CRM/Financial/Page/FinancialAccount.tpl,{$row.description}
templates/CRM/Financial/Page/FinancialAccount.tpl,{$row.accounting_code}
templates/CRM/Financial/Page/FinancialAccount.tpl,{$row.financial_account_type_id}
templates/CRM/Financial/Page/FinancialAccount.tpl,{$row.account_type_code}
templates/CRM/Financial/Page/FinancialAccount.tpl,{$config->resourceBase}
templates/CRM/Financial/Page/FinancialAccount.tpl,{$row.id}
templates/CRM/Financial/Page/FinancialAccount.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Financial/Page/FinancialType.tpl,{$row.id}
templates/CRM/Financial/Page/FinancialType.tpl,{$row.class}
templates/CRM/Financial/Page/FinancialType.tpl,{$row.name}
templates/CRM/Financial/Page/FinancialType.tpl,{$row.description}
templates/CRM/Financial/Page/FinancialType.tpl,{$row.financial_account}
templates/CRM/Financial/Page/FinancialType.tpl,{$row.id}
templates/CRM/Financial/Page/FinancialType.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Financial/Page/FinancialTypeAccount.tpl,{$row.id}
templates/CRM/Financial/Page/FinancialTypeAccount.tpl,{$row.class}
templates/CRM/Financial/Page/FinancialTypeAccount.tpl,{$row.account_relationship}
templates/CRM/Financial/Page/FinancialTypeAccount.tpl,{$row.financial_account}
templates/CRM/Financial/Page/FinancialTypeAccount.tpl,{$row.accounting_code}
templates/CRM/Financial/Page/FinancialTypeAccount.tpl,{$row.financial_account_type}
templates/CRM/Financial/Page/FinancialTypeAccount.tpl,{$row.account_type_code}
templates/CRM/Financial/Page/FinancialTypeAccount.tpl,{$row.owned_by}
templates/CRM/Financial/Page/FinancialTypeAccount.tpl,{$row.id}
templates/CRM/Financial/Page/FinancialTypeAccount.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Form/attachment.tpl,{$attVal.fileID}
templates/CRM/Form/attachment.tpl,{$attVal.url}
templates/CRM/Form/attachment.tpl,{$attVal.icon}
templates/CRM/Form/attachment.tpl,{$attVal.cleanName}
templates/CRM/Form/attachment.tpl,{$attVal.description}
templates/CRM/Form/attachment.tpl,{$attVal.tag}
templates/CRM/Form/attachment.tpl,{$attachTitle}
templates/CRM/Form/attachment.tpl,{$form.attachFile_1.label}
templates/CRM/Form/attachment.tpl,{$form.attachFile_1.html}
templates/CRM/Form/attachment.tpl,{$form.attachDesc_1.html}
templates/CRM/Form/attachment.tpl,{$form.tag_1.label}
templates/CRM/Form/attachment.tpl,{$form.tag_1.html}
templates/CRM/Form/attachment.tpl,{$form.attachFile_1.label}
templates/CRM/Form/attachment.tpl,{$form.$attachName.html}
templates/CRM/Form/attachment.tpl,{$form.$attachDesc.html}
templates/CRM/Form/attachment.tpl,{$form.$tagElement.label}
templates/CRM/Form/attachment.tpl,{$form.$tagElement.html}
templates/CRM/Form/attachment.tpl,{$attVal.fileID}
templates/CRM/Form/attachment.tpl,{$attVal.url}
templates/CRM/Form/attachment.tpl,{$attVal.cleanName}
templates/CRM/Form/attachment.tpl,{$attVal.description}
templates/CRM/Form/attachment.tpl,{$attVal.cleanName}
templates/CRM/Form/attachment.tpl,{$attVal.deleteURLArgs}
templates/CRM/Form/attachment.tpl,{$attVal.tag}
templates/CRM/Form/attachment.tpl,{$form.is_delete_attachment.html}
templates/CRM/Form/attachment.tpl,{$form.is_delete_attachment.label}
templates/CRM/Form/attachment.tpl,{$form.formClass}
templates/CRM/Form/basicForm.tpl,{$formName}
templates/CRM/Form/basicFormFields.tpl,{$entityInClassFormat}
templates/CRM/Form/basicFormFields.tpl,{$fieldName}
templates/CRM/Form/body.tpl,{$form.javascript}
templates/CRM/Form/body.tpl,{$form.hidden}
templates/CRM/Form/body.tpl,{$error.label}
templates/CRM/Form/body.tpl,{$error.message}
templates/CRM/Form/body.tpl,{$error}
templates/CRM/Form/body.tpl,{$form.$hookFormElement.label}
templates/CRM/Form/body.tpl,{$form.$hookFormElement.html}
templates/CRM/Form/default.tpl,{$form.attributes}
templates/CRM/Form/element.tpl,{$element.label}
templates/CRM/Form/element.tpl,{$element.required}
templates/CRM/Form/element.tpl,{$element.html}
templates/CRM/Form/element.tpl,{$element.description}
templates/CRM/Form/error.tpl,{$html}
templates/CRM/Form/error.tpl,{$error}
templates/CRM/Form/label.tpl,{$label}
templates/CRM/Form/label.tpl,{$label}
templates/CRM/Form/validate.tpl,{$form.formClass}
templates/CRM/Friend/Form/Friend.tpl,{$form.tf_is_active.html}
templates/CRM/Friend/Form/Friend.tpl,{$form.tf_is_active.label}
templates/CRM/Friend/Form/Friend.tpl,{$form.tf_title.label}
templates/CRM/Friend/Form/Friend.tpl,{$form.tf_title.html}
templates/CRM/Friend/Form/Friend.tpl,{$form.intro.label}
templates/CRM/Friend/Form/Friend.tpl,{$form.intro.html}
templates/CRM/Friend/Form/Friend.tpl,{$form.suggested_message.label}
templates/CRM/Friend/Form/Friend.tpl,{$form.suggested_message.html}
templates/CRM/Friend/Form/Friend.tpl,{$form.general_link.label}
templates/CRM/Friend/Form/Friend.tpl,{$form.general_link.html}
templates/CRM/Friend/Form/Friend.tpl,{$form.tf_thankyou_title.label}
templates/CRM/Friend/Form/Friend.tpl,{$form.tf_thankyou_title.html}
templates/CRM/Friend/Form/Friend.tpl,{$form.tf_thankyou_text.label}
templates/CRM/Friend/Form/Friend.tpl,{$form.tf_thankyou_text.html}
templates/CRM/Friend/Form.tpl,{$thankYouText}
templates/CRM/Friend/Form.tpl,{$linkTextUrl}
templates/CRM/Friend/Form.tpl,{$linkText|escape}
templates/CRM/Friend/Form.tpl,{$linkText}
templates/CRM/Friend/Form.tpl,{$intro}
templates/CRM/Friend/Form.tpl,{$form.from_name.label}
templates/CRM/Friend/Form.tpl,{$form.from_name.html}
templates/CRM/Friend/Form.tpl,{$form.from_email.html}
templates/CRM/Friend/Form.tpl,{$form.suggested_message.label}
templates/CRM/Friend/Form.tpl,{$form.suggested_message.html}
templates/CRM/Friend/Form.tpl,{$form.friend.$idx.first_name.html}
templates/CRM/Friend/Form.tpl,{$form.friend.$idx.last_name.html}
templates/CRM/Friend/Form.tpl,{$form.friend.$idx.email.html}
templates/CRM/Friend/Form.tpl,{$form.buttons.html}
templates/CRM/Grant/Form/Grant.tpl,{$form.contact_id.label}
templates/CRM/Grant/Form/Grant.tpl,{$form.contact_id.html}
templates/CRM/Grant/Form/Grant.tpl,{$form.status_id.label}
templates/CRM/Grant/Form/Grant.tpl,{$form.status_id.html}
templates/CRM/Grant/Form/Grant.tpl,{$form.grant_type_id.label}
templates/CRM/Grant/Form/Grant.tpl,{$form.grant_type_id.html}
templates/CRM/Grant/Form/Grant.tpl,{$form.amount_total.label}
templates/CRM/Grant/Form/Grant.tpl,{$form.amount_total.html}
templates/CRM/Grant/Form/Grant.tpl,{$form.amount_requested.label}
templates/CRM/Grant/Form/Grant.tpl,{$form.amount_requested.html}
templates/CRM/Grant/Form/Grant.tpl,{$form.amount_granted.label}
templates/CRM/Grant/Form/Grant.tpl,{$form.amount_granted.html}
templates/CRM/Grant/Form/Grant.tpl,{$form.application_received_date.label}
templates/CRM/Grant/Form/Grant.tpl,{$form.application_received_date.html}
templates/CRM/Grant/Form/Grant.tpl,{$form.decision_date.label}
templates/CRM/Grant/Form/Grant.tpl,{$form.decision_date.html}
templates/CRM/Grant/Form/Grant.tpl,{$form.money_transfer_date.label}
templates/CRM/Grant/Form/Grant.tpl,{$form.money_transfer_date.html}
templates/CRM/Grant/Form/Grant.tpl,{$form.grant_due_date.label}
templates/CRM/Grant/Form/Grant.tpl,{$form.grant_due_date.html}
templates/CRM/Grant/Form/Grant.tpl,{$form.grant_report_received.label}
templates/CRM/Grant/Form/Grant.tpl,{$form.grant_report_received.html}
templates/CRM/Grant/Form/Grant.tpl,{$form.rationale.label}
templates/CRM/Grant/Form/Grant.tpl,{$form.rationale.html}
templates/CRM/Grant/Form/Grant.tpl,{$form.note.label}
templates/CRM/Grant/Form/Grant.tpl,{$form.note.html}
templates/CRM/Grant/Form/GrantView.tpl,{$displayName}
templates/CRM/Grant/Form/GrantView.tpl,{$grantStatus}
templates/CRM/Grant/Form/GrantView.tpl,{$grantType}
templates/CRM/Grant/Form/GrantView.tpl,{$application_received_date|crmDate}
templates/CRM/Grant/Form/GrantView.tpl,{$decision_date|crmDate}
templates/CRM/Grant/Form/GrantView.tpl,{$money_transfer_date|crmDate}
templates/CRM/Grant/Form/GrantView.tpl,{$grant_due_date|crmDate}
templates/CRM/Grant/Form/GrantView.tpl,{$amount_total|crmMoney}
templates/CRM/Grant/Form/GrantView.tpl,{$amount_requested|crmMoney}
templates/CRM/Grant/Form/GrantView.tpl,{$amount_granted|crmMoney}
templates/CRM/Grant/Form/GrantView.tpl,{$rationale|nl2br}
templates/CRM/Grant/Form/GrantView.tpl,{$note|nl2br}
templates/CRM/Grant/Form/GrantView.tpl,{$attachment}
templates/CRM/Grant/Form/Search/Common.tpl,{$form.grant_report_received.label}
templates/CRM/Grant/Form/Search/Common.tpl,{$form.grant_report_received.html}
templates/CRM/Grant/Form/Search/Common.tpl,{$form.grant_status_id.html}
templates/CRM/Grant/Form/Search/Common.tpl,{$form.grant_type_id.html}
templates/CRM/Grant/Form/Search/Common.tpl,{$form.grant_amount_low.label}
templates/CRM/Grant/Form/Search/Common.tpl,{$form.grant_amount_low.html}
templates/CRM/Grant/Form/Search/Common.tpl,{$form.grant_amount_high.label}
templates/CRM/Grant/Form/Search/Common.tpl,{$form.grant_amount_high.html}
templates/CRM/Grant/Form/Search/Common.tpl,{$form.$notSetFieldName.html}
templates/CRM/Grant/Form/Search/Common.tpl,{$form.$notSetFieldName.label}
templates/CRM/Grant/Form/Search.tpl,{$form.sort_name.label}
templates/CRM/Grant/Form/Search.tpl,{$form.sort_name.html}
templates/CRM/Grant/Form/Search.tpl,{$form.buttons.html}
templates/CRM/Grant/Form/Selector.tpl,{$form.toggleSelect.html}
templates/CRM/Grant/Form/Selector.tpl,{$sort->_response.$key.link}
templates/CRM/Grant/Form/Selector.tpl,{$header.name}
templates/CRM/Grant/Form/Selector.tpl,{$row.grant_id}
templates/CRM/Grant/Form/Selector.tpl,{$row.grant_status_id}
templates/CRM/Grant/Form/Selector.tpl,{$form.$cbName.html}
templates/CRM/Grant/Form/Selector.tpl,{$row.contact_type}
templates/CRM/Grant/Form/Selector.tpl,{$row.sort_name}
templates/CRM/Grant/Form/Selector.tpl,{$row.grant_status}
templates/CRM/Grant/Form/Selector.tpl,{$row.grant_type}
templates/CRM/Grant/Form/Selector.tpl,{$row.grant_amount_total|crmMoney}
templates/CRM/Grant/Form/Selector.tpl,{$row.grant_amount_granted|crmMoney}
templates/CRM/Grant/Form/Selector.tpl,{$row.grant_application_received_date|truncate:10:''|crmDate}
templates/CRM/Grant/Form/Selector.tpl,{$row.grant_money_transfer_date|truncate:10:''|crmDate}
templates/CRM/Grant/Form/Selector.tpl,{$row.action|replace:'xx':$row.grant_id}
templates/CRM/Grant/Form/Task/Print.tpl,{$form.buttons.html}
templates/CRM/Grant/Form/Task/Print.tpl,{$row.sort_name}
templates/CRM/Grant/Form/Task/Print.tpl,{$row.grant_status}
templates/CRM/Grant/Form/Task/Print.tpl,{$row.grant_type}
templates/CRM/Grant/Form/Task/Print.tpl,{$row.grant_amount_total|crmMoney}
templates/CRM/Grant/Form/Task/Print.tpl,{$row.grant_amount_requested|crmMoney}
templates/CRM/Grant/Form/Task/Print.tpl,{$row.grant_amount_granted|crmMoney}
templates/CRM/Grant/Form/Task/Print.tpl,{$row.grant_application_received_date|truncate:10:''|crmDate}
templates/CRM/Grant/Form/Task/Print.tpl,{$row.grant_money_transfer_date|truncate:10:''|crmDate}
templates/CRM/Grant/Form/Task/Print.tpl,{$form.buttons.html}
templates/CRM/Grant/Form/Task/SearchTaskHookSample.tpl,{$row.display_name}
templates/CRM/Grant/Form/Task/SearchTaskHookSample.tpl,{$row.decision_date}
templates/CRM/Grant/Form/Task/SearchTaskHookSample.tpl,{$row.amount_requested}
templates/CRM/Grant/Form/Task/SearchTaskHookSample.tpl,{$row.amount_granted}
templates/CRM/Grant/Form/Task/Update.tpl,{$element}
templates/CRM/Grant/Form/Task/Update.tpl,{$form.$element.label}
templates/CRM/Grant/Form/Task/Update.tpl,{$form.$element.html}
templates/CRM/Grant/Form/Task.tpl,{$row.displayName}
templates/CRM/Grant/Page/DashBoard.tpl,{$grantSummary.total_grants}
templates/CRM/Grant/Page/DashBoard.tpl,{$status.label}
templates/CRM/Grant/Page/DashBoard.tpl,{$status.total}
templates/CRM/Grant/Page/DashBoard.tpl,{$grantSummary.total_grants}
templates/CRM/Grant/Page/Tab.tpl,{$newGrantURL}
templates/CRM/Grant/Page/Tab.tpl,{$newGrantURL}
templates/CRM/Group/Form/Delete.tpl,{$config->resourceBase}
templates/CRM/Group/Form/Edit.tpl,{$form.title.label}
templates/CRM/Group/Form/Edit.tpl,{$form.title.html|crmAddClass:huge}
templates/CRM/Group/Form/Edit.tpl,{$group.created_by}
templates/CRM/Group/Form/Edit.tpl,{$group.modified_by}
templates/CRM/Group/Form/Edit.tpl,{$form.description.label}
templates/CRM/Group/Form/Edit.tpl,{$form.description.html}
templates/CRM/Group/Form/Edit.tpl,{$form.group_type.label}
templates/CRM/Group/Form/Edit.tpl,{$form.group_type.html}
templates/CRM/Group/Form/Edit.tpl,{$form.visibility.label}
templates/CRM/Group/Form/Edit.tpl,{$form.visibility.html|crmAddClass:huge}
templates/CRM/Group/Form/Edit.tpl,{$form.is_reserved.label}
templates/CRM/Group/Form/Edit.tpl,{$form.is_reserved.html}
templates/CRM/Group/Form/Edit.tpl,{$form.is_active.label}
templates/CRM/Group/Form/Edit.tpl,{$form.is_active.html}
templates/CRM/Group/Form/Edit.tpl,{$crmURL}
templates/CRM/Group/Form/Edit.tpl,{$freezeMailignList}
templates/CRM/Group/Form/Edit.tpl,{$hideMailignList}
templates/CRM/Group/Form/Edit.tpl,{$hideMailignList}
templates/CRM/Group/Form/GroupsCommon.tpl,{$form.$element_name.html}
templates/CRM/Group/Form/GroupsCommon.tpl,{$form.$element_name.label}
templates/CRM/Group/Form/GroupsCommon.tpl,{$form.parents.label}
templates/CRM/Group/Form/GroupsCommon.tpl,{$form.parents.html|crmAddClass:huge}
templates/CRM/Group/Form/GroupsCommon.tpl,{$form.organization_id.label}
templates/CRM/Group/Form/GroupsCommon.tpl,{$form.organization_id.html|crmAddClass:huge}
templates/CRM/Group/Form/Search.tpl,{$form.title.label}
templates/CRM/Group/Form/Search.tpl,{$form.title.html}
templates/CRM/Group/Form/Search.tpl,{$form.created_by.label}
templates/CRM/Group/Form/Search.tpl,{$form.created_by.html}
templates/CRM/Group/Form/Search.tpl,{$form.visibility.label}
templates/CRM/Group/Form/Search.tpl,{$form.visibility.html}
templates/CRM/Group/Form/Search.tpl,{$form.group_type_search.label}
templates/CRM/Group/Form/Search.tpl,{$form.group_type_search.html}
templates/CRM/Group/Form/Search.tpl,{$form.group_status.label}
templates/CRM/Group/Form/Search.tpl,{$form.group_status.html}
templates/CRM/Group/Form/Search.tpl,{$form.component_mode.label}
templates/CRM/Group/Form/Search.tpl,{$form.component_mode.html}
templates/CRM/Group/Form/Search.tpl,{$editableClass}
templates/CRM/Group/Form/Search.tpl,{$editableClass}
templates/CRM/Group/Form/Search.tpl,{$editableClass}
templates/CRM/Group/Form/Search.tpl,{$showOrgInfo}
templates/CRM/Group/Form/Search.tpl,{$showOrgInfo}
templates/CRM/Group/Form/Search.tpl,{$editableClass}
templates/CRM/Group/Form/Search.tpl,{$editableClass}
templates/CRM/Group/Form/Search.tpl,{$editableClass}
templates/CRM/Group/Form/Search.tpl,{$editableClass}
templates/CRM/Group/Page/GroupRows.tpl,{$row.title}
templates/CRM/Group/Page/GroupRows.tpl,{$row.id}
templates/CRM/Group/Page/GroupRows.tpl,"{$row.description|mb_truncate:80:""..."":true}"
templates/CRM/Group/Page/GroupRows.tpl,{$row.visibility}
templates/CRM/Group/Page/GroupRows.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Logging/ReportDetail.tpl,{$backURL}
templates/CRM/Logging/ReportDetail.tpl,{$revertURL}
templates/CRM/Logging/ReportDetail.tpl,{$revertConfirm}
templates/CRM/Mailing/Form/Approve.tpl,{$form.approval_status_id.label}
templates/CRM/Mailing/Form/Approve.tpl,{$form.approval_status_id.html}
templates/CRM/Mailing/Form/Approve.tpl,{$form.approval_note.label}
templates/CRM/Mailing/Form/Approve.tpl,{$form.approval_note.html}
templates/CRM/Mailing/Form/Approve.tpl,{$preview.subject}
templates/CRM/Mailing/Form/Approve.tpl,{$preview.attachment}
templates/CRM/Mailing/Form/Approve.tpl,{$preview.viewURL}
templates/CRM/Mailing/Form/Approve.tpl,{$preview.viewURL}
templates/CRM/Mailing/Form/Component.tpl,{$form.name.label}
templates/CRM/Mailing/Form/Component.tpl,{$form.name.html}
templates/CRM/Mailing/Form/Component.tpl,{$form.component_type.label}
templates/CRM/Mailing/Form/Component.tpl,{$form.component_type.html}
templates/CRM/Mailing/Form/Component.tpl,{$form.subject.label}
templates/CRM/Mailing/Form/Component.tpl,{$form.subject.html}
templates/CRM/Mailing/Form/Component.tpl,{$form.body_html.label}
templates/CRM/Mailing/Form/Component.tpl,{$form.body_html.html}
templates/CRM/Mailing/Form/Component.tpl,{$form.body_text.label}
templates/CRM/Mailing/Form/Component.tpl,{$form.body_text.html}
templates/CRM/Mailing/Form/Component.tpl,{$form.is_default.label}
templates/CRM/Mailing/Form/Component.tpl,{$form.is_default.html}
templates/CRM/Mailing/Form/Component.tpl,{$form.is_active.label}
templates/CRM/Mailing/Form/Component.tpl,{$form.is_active.html}
templates/CRM/Mailing/Form/Count.tpl,{$count|crmNumberFormat}
templates/CRM/Mailing/Form/Count.tpl,{$row}
templates/CRM/Mailing/Form/ForwardMailing.tpl,{$fromEmail}
templates/CRM/Mailing/Form/ForwardMailing.tpl,{$form.email_0.label}
templates/CRM/Mailing/Form/ForwardMailing.tpl,{$form.email_0.html}
templates/CRM/Mailing/Form/ForwardMailing.tpl,{$form.email_1.label}
templates/CRM/Mailing/Form/ForwardMailing.tpl,{$form.email_1.html}
templates/CRM/Mailing/Form/ForwardMailing.tpl,{$form.email_2.label}
templates/CRM/Mailing/Form/ForwardMailing.tpl,{$form.email_2.html}
templates/CRM/Mailing/Form/ForwardMailing.tpl,{$form.email_3.label}
templates/CRM/Mailing/Form/ForwardMailing.tpl,{$form.email_3.html}
templates/CRM/Mailing/Form/ForwardMailing.tpl,{$form.email_4.label}
templates/CRM/Mailing/Form/ForwardMailing.tpl,{$form.email_4.html}
templates/CRM/Mailing/Form/ForwardMailing.tpl,{$config->resourceBase}
templates/CRM/Mailing/Form/ForwardMailing.tpl,{$form.forward_comment.label}
templates/CRM/Mailing/Form/ForwardMailing.tpl,{$form.forward_comment.html}
templates/CRM/Mailing/Form/ForwardMailing.tpl,{$form.html_comment.html}
templates/CRM/Mailing/Form/InsertTokens.tpl,{$form.formClass}
templates/CRM/Mailing/Form/InsertTokens.tpl,{$tokens|@json_encode}
templates/CRM/Mailing/Form/InsertTokens.tpl,{$templateSelected}
templates/CRM/Mailing/Form/InsertTokens.tpl,{$form.formClass}
templates/CRM/Mailing/Form/Optout.tpl,{$email_masked}
templates/CRM/Mailing/Form/Optout.tpl,{$form.email_confirm.label}
templates/CRM/Mailing/Form/Optout.tpl,{$form.email_confirm.html}
templates/CRM/Mailing/Form/Search/Common.tpl,{$form.mailing_id.label}
templates/CRM/Mailing/Form/Search/Common.tpl,{$form.mailing_id.html}
templates/CRM/Mailing/Form/Search/Common.tpl,{$form.mailing_job_status.label}
templates/CRM/Mailing/Form/Search/Common.tpl,{$form.mailing_job_status.html}
templates/CRM/Mailing/Form/Search/Common.tpl,{$form.mailing_delivery_status.label}
templates/CRM/Mailing/Form/Search/Common.tpl,{$form.mailing_delivery_status.html}
templates/CRM/Mailing/Form/Search/Common.tpl,{$form.mailing_bounce_types.label}
templates/CRM/Mailing/Form/Search/Common.tpl,{$form.mailing_bounce_types.html}
templates/CRM/Mailing/Form/Search/Common.tpl,{$form.mailing_open_status.label}
templates/CRM/Mailing/Form/Search/Common.tpl,{$form.mailing_open_status.html}
templates/CRM/Mailing/Form/Search/Common.tpl,{$form.mailing_click_status.label}
templates/CRM/Mailing/Form/Search/Common.tpl,{$form.mailing_click_status.html}
templates/CRM/Mailing/Form/Search/Common.tpl,{$form.mailing_reply_status.label}
templates/CRM/Mailing/Form/Search/Common.tpl,{$form.mailing_reply_status.html}
templates/CRM/Mailing/Form/Search/Common.tpl,{$form.mailing_unsubscribe.html}
templates/CRM/Mailing/Form/Search/Common.tpl,{$form.mailing_unsubscribe.label}
templates/CRM/Mailing/Form/Search/Common.tpl,{$form.mailing_optout.html}
templates/CRM/Mailing/Form/Search/Common.tpl,{$form.mailing_optout.label}
templates/CRM/Mailing/Form/Search/Common.tpl,{$form.mailing_forward.html}
templates/CRM/Mailing/Form/Search/Common.tpl,{$form.mailing_forward.label}
templates/CRM/Mailing/Form/Search.tpl,{$form.mailing_name.label}
templates/CRM/Mailing/Form/Search.tpl,{$form.mailing_name.html|crmAddClass:big}
templates/CRM/Mailing/Form/Search.tpl,{$form.sort_name.label}
templates/CRM/Mailing/Form/Search.tpl,{$form.sort_name.html|crmAddClass:big}
templates/CRM/Mailing/Form/Search.tpl,{$form.is_archived.label}
templates/CRM/Mailing/Form/Search.tpl,{$form.is_archived.html}
templates/CRM/Mailing/Form/Search.tpl,{$mailing_status_val.html}
templates/CRM/Mailing/Form/Search.tpl,{$form.status_unscheduled.html}
templates/CRM/Mailing/Form/Search.tpl,{$form.language.label}
templates/CRM/Mailing/Form/Search.tpl,{$form.language.html|crmAddClass:big}
templates/CRM/Mailing/Form/Search.tpl,{$form.buttons.html}
templates/CRM/Mailing/Form/Selector.tpl,{$form.toggleSelect.html}
templates/CRM/Mailing/Form/Selector.tpl,{$sort->_response.$key.link}
templates/CRM/Mailing/Form/Selector.tpl,{$header.name}
templates/CRM/Mailing/Form/Selector.tpl,{$row.contact_id}
templates/CRM/Mailing/Form/Selector.tpl,{$form.$cbName.html}
templates/CRM/Mailing/Form/Selector.tpl,{$row.contact_type}
templates/CRM/Mailing/Form/Selector.tpl,{$row.sort_name}
templates/CRM/Mailing/Form/Selector.tpl,{$row.email}
templates/CRM/Mailing/Form/Selector.tpl,{$row.mailing_name}
templates/CRM/Mailing/Form/Selector.tpl,{$row.mailing_subject}
templates/CRM/Mailing/Form/Selector.tpl,{$row.mailing_job_status}
templates/CRM/Mailing/Form/Selector.tpl,{$row.mailing_job_end_date|crmDate}
templates/CRM/Mailing/Form/Selector.tpl,{$row.action|replace:'xx':$row.contact_id}
templates/CRM/Mailing/Form/Subscribe.tpl,{$form.email.label}
templates/CRM/Mailing/Form/Subscribe.tpl,{$form.email.html}
templates/CRM/Mailing/Form/Subscribe.tpl,{$row.id}
templates/CRM/Mailing/Form/Subscribe.tpl,{$cbName}
templates/CRM/Mailing/Form/Subscribe.tpl,{$form.$cbName.html}
templates/CRM/Mailing/Form/Subscribe.tpl,{$cbName}
templates/CRM/Mailing/Form/Subscribe.tpl,{$row.title}
templates/CRM/Mailing/Form/Subscribe.tpl,{$row.description}
templates/CRM/Mailing/Form/Task/Print.tpl,{$form.buttons.html}
templates/CRM/Mailing/Form/Task/Print.tpl,{$row.sort_name}
templates/CRM/Mailing/Form/Task/Print.tpl,{$row.email}
templates/CRM/Mailing/Form/Task/Print.tpl,{$row.mailing_name}
templates/CRM/Mailing/Form/Task/Print.tpl,{$row.mailing_subject}
templates/CRM/Mailing/Form/Task/Print.tpl,{$row.mailing_job_status}
templates/CRM/Mailing/Form/Task/Print.tpl,{$row.mailing_job_end_date|crmDate}
templates/CRM/Mailing/Form/Task/Print.tpl,{$form.buttons.html}
templates/CRM/Mailing/Form/Task.tpl,{$row.displayName}
templates/CRM/Mailing/Form/Unsubscribe.tpl,{$group.title}
templates/CRM/Mailing/Form/Unsubscribe.tpl,{$group.description}
templates/CRM/Mailing/Form/Unsubscribe.tpl,{$email_masked}
templates/CRM/Mailing/Form/Unsubscribe.tpl,{$form.email_confirm.label}
templates/CRM/Mailing/Form/Unsubscribe.tpl,{$form.email_confirm.html}
templates/CRM/Mailing/Page/Browse.tpl,{$linkTitle}
templates/CRM/Mailing/Page/Browse.tpl,{$sort->_response.$key.link}
templates/CRM/Mailing/Page/Browse.tpl,{$header.name}
templates/CRM/Mailing/Page/Browse.tpl,{$row.id}
templates/CRM/Mailing/Page/Browse.tpl,{$row.status}
templates/CRM/Mailing/Page/Browse.tpl,{$row.name}
templates/CRM/Mailing/Page/Browse.tpl,{$row.language}
templates/CRM/Mailing/Page/Browse.tpl,{$row.status}
templates/CRM/Mailing/Page/Browse.tpl,{$row.status}
templates/CRM/Mailing/Page/Browse.tpl,{$row.created_id}
templates/CRM/Mailing/Page/Browse.tpl,{$row.created_by|escape}
templates/CRM/Mailing/Page/Browse.tpl,"{$row.created_by|mb_truncate:20:""...""}"
templates/CRM/Mailing/Page/Browse.tpl,{$row.created_date}
templates/CRM/Mailing/Page/Browse.tpl,{$row.scheduled_id}
templates/CRM/Mailing/Page/Browse.tpl,{$row.scheduled_by|escape}
templates/CRM/Mailing/Page/Browse.tpl,"{$row.scheduled_by|mb_truncate:20:""...""}"
templates/CRM/Mailing/Page/Browse.tpl,{$row.scheduled}
templates/CRM/Mailing/Page/Browse.tpl,{$row.start}
templates/CRM/Mailing/Page/Browse.tpl,{$row.end}
templates/CRM/Mailing/Page/Browse.tpl,{$row.campaign}
templates/CRM/Mailing/Page/Browse.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Mailing/Page/Browse.tpl,{$linkTitle}
templates/CRM/Mailing/Page/Browse.tpl,{$qVal}
templates/CRM/Mailing/Page/Browse.tpl,{$qVal}
templates/CRM/Mailing/Page/Browse.tpl,{$qVal}
templates/CRM/Mailing/Page/Browse.tpl,{$qVal}
templates/CRM/Mailing/Page/Browse.tpl,{$qVal}
templates/CRM/Mailing/Page/Component.tpl,{$row.id}
templates/CRM/Mailing/Page/Component.tpl,{$row.class}
templates/CRM/Mailing/Page/Component.tpl,{$row.name}
templates/CRM/Mailing/Page/Component.tpl,{$row.component_type}
templates/CRM/Mailing/Page/Component.tpl,{$row.subject}
templates/CRM/Mailing/Page/Component.tpl,{$row.body_html|escape}
templates/CRM/Mailing/Page/Component.tpl,{$row.body_text|escape}
templates/CRM/Mailing/Page/Component.tpl,{$config->resourceBase}
templates/CRM/Mailing/Page/Component.tpl,{$row.id}
templates/CRM/Mailing/Page/Component.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Mailing/Page/Event.tpl,{$sort->_response.$key.link}
templates/CRM/Mailing/Page/Event.tpl,{$header.name}
templates/CRM/Mailing/Page/Event.tpl,{$value}
templates/CRM/Mailing/Page/Event.tpl,{$backUrl}
templates/CRM/Mailing/Page/Event.tpl,{$backUrlTitle}
templates/CRM/Mailing/Page/Event.tpl,{$pager->_totalPages}
templates/CRM/Mailing/Page/Event.tpl,{$k}
templates/CRM/Mailing/Page/Event.tpl,{$val}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.links.queue}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.queue}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.actionlinks.queue}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.links.delivered}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.delivered}
templates/CRM/Mailing/Page/Report.tpl,"{$report.event_totals.delivered_rate|string_format:""%0.2f""}"
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.actionlinks.delivered}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.links.opened}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.opened}
templates/CRM/Mailing/Page/Report.tpl,"{$report.event_totals.opened_rate|string_format:""%0.2f""}"
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.actionlinks.opened_unique}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.links.opened}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.total_opened}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.actionlinks.opened}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.links.clicks}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.url}
templates/CRM/Mailing/Page/Report.tpl,"{$report.event_totals.clickthrough_rate|string_format:""%0.2f""}"
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.actionlinks.clicks}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.links.forward}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.forward}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.actionlinks.forward}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.links.reply}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.reply}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.actionlinks.reply}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.links.bounce}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.bounce}
templates/CRM/Mailing/Page/Report.tpl,"{$report.event_totals.bounce_rate|string_format:""%0.2f""}"
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.actionlinks.bounce}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.links.unsubscribe}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.unsubscribe}
templates/CRM/Mailing/Page/Report.tpl,"{$report.event_totals.unsubscribe_rate|string_format:""%0.2f""}"
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.actionlinks.unsubscribe}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.links.optout}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.optout}
templates/CRM/Mailing/Page/Report.tpl,"{$report.event_totals.optout_rate|string_format:""%0.2f""}"
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.actionlinks.optout}
templates/CRM/Mailing/Page/Report.tpl,{$report.jobs.0.scheduled_date}
templates/CRM/Mailing/Page/Report.tpl,{$report.jobs.0.status}
templates/CRM/Mailing/Page/Report.tpl,{$report.jobs.0.start_date}
templates/CRM/Mailing/Page/Report.tpl,{$report.jobs.0.end_date}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.links.clicks}
templates/CRM/Mailing/Page/Report.tpl,{$report.event_totals.links.clicks_unique}
templates/CRM/Mailing/Page/Report.tpl,{$row.link}
templates/CRM/Mailing/Page/Report.tpl,{$row.clicks}
templates/CRM/Mailing/Page/Report.tpl,{$row.clicks}
templates/CRM/Mailing/Page/Report.tpl,{$row.link_unique}
templates/CRM/Mailing/Page/Report.tpl,{$row.unique}
templates/CRM/Mailing/Page/Report.tpl,{$row.unique}
templates/CRM/Mailing/Page/Report.tpl,"{$row.rate|string_format:""%0.2f""}"
templates/CRM/Mailing/Page/Report.tpl,{$row.url}
templates/CRM/Mailing/Page/Report.tpl,{$row.url}
templates/CRM/Mailing/Page/Report.tpl,{$row.report}
templates/CRM/Mailing/Page/Report.tpl,{$report.mailing.body_text|mb_truncate:30|escape|nl2br}
templates/CRM/Mailing/Page/Report.tpl,{$textViewURL}
templates/CRM/Mailing/Page/Report.tpl,{$report.mailing.body_html|mb_truncate:30|escape|nl2br}
templates/CRM/Mailing/Page/Report.tpl,{$htmlViewURL}
templates/CRM/Mailing/Page/Report.tpl,{$report.mailing.attachment}
templates/CRM/Mailing/Page/Report.tpl,{$component.type}
templates/CRM/Mailing/Page/Report.tpl,{$component.link}
templates/CRM/Mailing/Page/Report.tpl,{$component.name}
templates/CRM/Mailing/Page/Report.tpl,{$report.mailing.name}
templates/CRM/Mailing/Page/Report.tpl,{$report.mailing.subject}
templates/CRM/Mailing/Page/Report.tpl,{$report.mailing.from_name}
templates/CRM/Mailing/Page/Report.tpl,{$report.mailing.from_email}
templates/CRM/Mailing/Page/Report.tpl,{$report.mailing.replyto_email|htmlentities}
templates/CRM/Mailing/Page/Report.tpl,{$public_url}
templates/CRM/Mailing/Page/Report.tpl,{$public_url}
templates/CRM/Mailing/Page/Report.tpl,{$report.mailing.campaign}
templates/CRM/Mailing/Page/Report.tpl,{$backUrl}
templates/CRM/Mailing/Page/Report.tpl,{$backUrlTitle}
templates/CRM/Mailing/Page/Resubscribe.tpl,{$display_name}
templates/CRM/Mailing/Page/Resubscribe.tpl,{$email}
templates/CRM/Mailing/Page/Resubscribe.tpl,{$confirmURL}
templates/CRM/Member/Form/Membership.tpl,{$endDate|crmDate}
templates/CRM/Member/Form/Membership.tpl,{$opId}
templates/CRM/Member/Form/Membership.tpl,{$memType}
templates/CRM/Member/Form/Membership.tpl,{$autoRenewOption}
templates/CRM/Member/Form/Membership.tpl,{$contributionType}
templates/CRM/Member/Form/Membership.tpl,{$ccModeLink}
templates/CRM/Member/Form/Membership.tpl,{$deleteMessage}
templates/CRM/Member/Form/Membership.tpl,{$displayName}
templates/CRM/Member/Form/Membership.tpl,{$form.contact_id.label}
templates/CRM/Member/Form/Membership.tpl,{$form.contact_id.html}
templates/CRM/Member/Form/Membership.tpl,{$form.membership_type_id.label}
templates/CRM/Member/Form/Membership.tpl,{$form.membership_type_id.html}
templates/CRM/Member/Form/Membership.tpl,{$form.price_set_id.html}
templates/CRM/Member/Form/Membership.tpl,{$form.max_related.label}
templates/CRM/Member/Form/Membership.tpl,{$form.max_related.html}
templates/CRM/Member/Form/Membership.tpl,{$form.num_terms.label}
templates/CRM/Member/Form/Membership.tpl,{$form.num_terms.html}
templates/CRM/Member/Form/Membership.tpl,{$form.source.label}
templates/CRM/Member/Form/Membership.tpl,{$form.source.html}
templates/CRM/Member/Form/Membership.tpl,{$form.join_date.label}
templates/CRM/Member/Form/Membership.tpl,{$form.join_date.html}
templates/CRM/Member/Form/Membership.tpl,{$form.start_date.label}
templates/CRM/Member/Form/Membership.tpl,{$form.start_date.html}
templates/CRM/Member/Form/Membership.tpl,{$form.end_date.label}
templates/CRM/Member/Form/Membership.tpl,{$endDate|crmDate}
templates/CRM/Member/Form/Membership.tpl,{$form.end_date.html}
templates/CRM/Member/Form/Membership.tpl,{$form.is_override.label}
templates/CRM/Member/Form/Membership.tpl,{$form.is_override.html}
templates/CRM/Member/Form/Membership.tpl,{$form.status_override_end_date.html}
templates/CRM/Member/Form/Membership.tpl,{$form.status_id.label}
templates/CRM/Member/Form/Membership.tpl,{$membershipStatus}
templates/CRM/Member/Form/Membership.tpl,{$form.status_id.label}
templates/CRM/Member/Form/Membership.tpl,{$form.status_id.html}
templates/CRM/Member/Form/Membership.tpl,{$form.record_contribution.label}
templates/CRM/Member/Form/Membership.tpl,{$form.record_contribution.html}
templates/CRM/Member/Form/Membership.tpl,{$form.send_receipt.label}
templates/CRM/Member/Form/Membership.tpl,{$form.send_receipt.html}
templates/CRM/Member/Form/Membership.tpl,{$form.send_receipt.label}
templates/CRM/Member/Form/Membership.tpl,{$form.send_receipt.html}
templates/CRM/Member/Form/Membership.tpl,{$form.from_email_address.label}
templates/CRM/Member/Form/Membership.tpl,{$form.from_email_address.html}
templates/CRM/Member/Form/Membership.tpl,{$form.receipt_text.label}
templates/CRM/Member/Form/Membership.tpl,{$form.receipt_text.html|crmAddClass:huge}
templates/CRM/Member/Form/Membership.tpl,{$entityID}
templates/CRM/Member/Form/Membership.tpl,{$contactId}
templates/CRM/Member/Form/Membership.tpl,{$allMembershipInfo}
templates/CRM/Member/Form/Membership.tpl,{$taxRates}
templates/CRM/Member/Form/Membership.tpl,{$taxTerm|@json_encode}
templates/CRM/Member/Form/Membership.tpl,{$currency|@json_encode}
templates/CRM/Member/Form/Membership.tpl,{$membershipMode}
templates/CRM/Member/Form/Membership.tpl,{$emailExists|json_encode}
templates/CRM/Member/Form/Membership.tpl,{$form.formClass}
templates/CRM/Member/Form/Membership.tpl,{$form.formClass}
templates/CRM/Member/Form/Membership.tpl,{$allowAutoRenew}
templates/CRM/Member/Form/Membership.tpl,{$alreadyAutoRenew}
templates/CRM/Member/Form/Membership.tpl,{$existingContactMemberships|@json_encode}
templates/CRM/Member/Form/Membership.tpl,{$membershipMode}
templates/CRM/Member/Form/Membership.tpl,{$action}
templates/CRM/Member/Form/Membership.tpl,{$recurProcessor}
templates/CRM/Member/Form/Membership.tpl,{$autoRenewOptions}
templates/CRM/Member/Form/Membership.tpl,{$customDataType|@json_encode}
templates/CRM/Member/Form/Membership.tpl,{$allMembershipInfo}
templates/CRM/Member/Form/Membership.tpl,{$contactID}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.member_is_active.html}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.member_is_active.label}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.new_title.label}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.new_title.html}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.new_text.label}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.new_text.html}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.renewal_title.label}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.renewal_title.html}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.renewal_text.label}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.renewal_text.html}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.member_price_set_id.label}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.member_price_set_id.html}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.membership_type_label.label}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.membership_type_label.html}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.membership_type.label}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.membership_type.$key.html}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.membership_type_default.$key.html}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.$element.html}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.is_required.html}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.is_required.label}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.is_separate_payment.html}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.is_separate_payment.label}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.display_min_fee.html}
templates/CRM/Member/Form/MembershipBlock.tpl,{$form.display_min_fee.label}
templates/CRM/Member/Form/MembershipCommon.tpl,{$formClass}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.is_different_contribution_contact.label}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.is_different_contribution_contact.html}
templates/CRM/Member/Form/MembershipCommon.tpl,{$formClass}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.soft_credit_type_id.label}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.soft_credit_type_id.html}
templates/CRM/Member/Form/MembershipCommon.tpl,{$formClass}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.soft_credit_contact_id.label}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.soft_credit_contact_id.html}
templates/CRM/Member/Form/MembershipCommon.tpl,{$formClass}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.total_amount.label}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.total_amount.html}
templates/CRM/Member/Form/MembershipCommon.tpl,{$formClass}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.receive_date.label}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.receive_date.html}
templates/CRM/Member/Form/MembershipCommon.tpl,{$formClass}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.financial_type_id.label}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.financial_type_id.html}
templates/CRM/Member/Form/MembershipCommon.tpl,{$formClass}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.payment_instrument_id.label}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.payment_instrument_id.html}
templates/CRM/Member/Form/MembershipCommon.tpl,{$formClass}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.trxn_id.label}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.trxn_id.html}
templates/CRM/Member/Form/MembershipCommon.tpl,{$formClass}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.contribution_status_id.label}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.contribution_status_id.html}
templates/CRM/Member/Form/MembershipCommon.tpl,{$formClass}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.auto_renew.label}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.auto_renew.html}
templates/CRM/Member/Form/MembershipCommon.tpl,{$formClass}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.financial_type_id.label}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.financial_type_id.html}
templates/CRM/Member/Form/MembershipCommon.tpl,{$formClass}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.total_amount.label}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.total_amount.html}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.is_different_contribution_contact.label}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.is_different_contribution_contact.html}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.soft_credit_type_id.label}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.soft_credit_type_id.html}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.soft_credit_contact_id.label}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.soft_credit_contact_id.html}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.payment_processor_id.label}
templates/CRM/Member/Form/MembershipCommon.tpl,{$form.payment_processor_id.html}
templates/CRM/Member/Form/MembershipRelated.tpl,{$related_text}
templates/CRM/Member/Form/MembershipRelated.tpl,{$rel.id}
templates/CRM/Member/Form/MembershipRelated.tpl,{$rel.relation}
templates/CRM/Member/Form/MembershipRelated.tpl,{$rel.start_date}
templates/CRM/Member/Form/MembershipRelated.tpl,{$rel.start_date|crmDate}
templates/CRM/Member/Form/MembershipRelated.tpl,{$rel.end_date}
templates/CRM/Member/Form/MembershipRelated.tpl,{$rel.end_date|crmDate}
templates/CRM/Member/Form/MembershipRelated.tpl,{$rel.name}
templates/CRM/Member/Form/MembershipRelated.tpl,{$rel.comment}
templates/CRM/Member/Form/MembershipRelated.tpl,{$rel.status}
templates/CRM/Member/Form/MembershipRelated.tpl,{$rel.action|replace:'xx':$rel.mid}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$renewalDate|crmDate}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$orgName}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$memType}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$form.membership_type_id.label}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$form.membership_type_id.html}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$membershipStatus}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$endDate}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$form.renewal_date.label}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$form.renewal_date.html}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$form.num_terms.label}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$form.num_terms.html|crmAddClass:two}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$form.record_contribution.label}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$form.record_contribution.html}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$formClass}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$form.send_receipt.label}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$form.send_receipt.html}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$form.from_email_address.label}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$form.from_email_address.html}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$form.receipt_text_renewal.label}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$form.receipt_text_renewal.html|crmAddClass:huge}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$allMembershipInfo}
templates/CRM/Member/Form/MembershipRenewal.tpl,{$membershipMode}
templates/CRM/Member/Form/MembershipStatus.tpl,{$deleteMessage|escape}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.name.label}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.name.html}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.label.label}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.label.html}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.start_event.label}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.start_event.html}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.start_event_adjust_unit.label}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.start_event_adjust_interval.html}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.start_event_adjust_unit.html}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.end_event.label}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.end_event.html}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.end_event_adjust_unit.label}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.end_event_adjust_interval.html}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.end_event_adjust_unit.html}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.is_current_member.label}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.is_current_member.html}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.is_admin.label}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.is_admin.html}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.weight.label}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.weight.html}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.is_default.label}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.is_default.html}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.is_active.label}
templates/CRM/Member/Form/MembershipStatus.tpl,{$form.is_active.html}
templates/CRM/Member/Form/MembershipType.tpl,{$entityInClassFormat}
templates/CRM/Member/Form/MembershipType.tpl,{$fieldName}
templates/CRM/Member/Form/MembershipType.tpl,{$form.financial_type_id.label}
templates/CRM/Member/Form/MembershipType.tpl,{$form.financial_type_id.html}
templates/CRM/Member/Form/MembershipType.tpl,{$form.auto_renew.label}
templates/CRM/Member/Form/MembershipType.tpl,{$form.auto_renew.html}
templates/CRM/Member/Form/MembershipType.tpl,{$form.duration_unit.label}
templates/CRM/Member/Form/MembershipType.tpl,{$form.duration_interval.html}
templates/CRM/Member/Form/MembershipType.tpl,{$form.duration_unit.html}
templates/CRM/Member/Form/MembershipType.tpl,{$form.period_type.label}
templates/CRM/Member/Form/MembershipType.tpl,{$form.period_type.html}
templates/CRM/Member/Form/MembershipType.tpl,{$form.fixed_period_start_day.label}
templates/CRM/Member/Form/MembershipType.tpl,{$form.fixed_period_start_day.html}
templates/CRM/Member/Form/MembershipType.tpl,{$form.fixed_period_rollover_day.label}
templates/CRM/Member/Form/MembershipType.tpl,{$form.fixed_period_rollover_day.html}
templates/CRM/Member/Form/MembershipType.tpl,{$form.month_fixed_period_rollover_day.label}
templates/CRM/Member/Form/MembershipType.tpl,{$form.month_fixed_period_rollover_day.html}
templates/CRM/Member/Form/MembershipType.tpl,{$form.relationship_type_id.label}
templates/CRM/Member/Form/MembershipType.tpl,{$form.relationship_type_id.html}
templates/CRM/Member/Form/MembershipType.tpl,{$form.relationship_type_id.html}
templates/CRM/Member/Form/MembershipType.tpl,{$form.max_related.label}
templates/CRM/Member/Form/MembershipType.tpl,{$form.max_related.html}
templates/CRM/Member/Form/MembershipType.tpl,{$form.visibility.label}
templates/CRM/Member/Form/MembershipType.tpl,{$form.visibility.html}
templates/CRM/Member/Form/MembershipType.tpl,{$form.weight.label}
templates/CRM/Member/Form/MembershipType.tpl,{$form.weight.html}
templates/CRM/Member/Form/MembershipType.tpl,{$form.is_active.label}
templates/CRM/Member/Form/MembershipType.tpl,{$form.is_active.html}
templates/CRM/Member/Form/MembershipType.tpl,{$allowAutoRenewMsg}
templates/CRM/Member/Form/MembershipView.tpl,{$displayName}
templates/CRM/Member/Form/MembershipView.tpl,{$relationship}
templates/CRM/Member/Form/MembershipView.tpl,{$owner_display_name}
templates/CRM/Member/Form/MembershipView.tpl,{$membership_type}
templates/CRM/Member/Form/MembershipView.tpl,{$max_related}
templates/CRM/Member/Form/MembershipView.tpl,{$status}
templates/CRM/Member/Form/MembershipView.tpl,{$source}
templates/CRM/Member/Form/MembershipView.tpl,{$campaign}
templates/CRM/Member/Form/MembershipView.tpl,{$join_date|crmDate}
templates/CRM/Member/Form/MembershipView.tpl,{$start_date|crmDate}
templates/CRM/Member/Form/MembershipView.tpl,{$end_date|crmDate}
templates/CRM/Member/Form/MembershipView.tpl,{$auto_renew}
templates/CRM/Member/Form/MembershipView.tpl,{$id}
templates/CRM/Member/Form/MembershipView.tpl,{$contactId}
templates/CRM/Member/Form/Search/Common.tpl,{$form.membership_type_id.label}
templates/CRM/Member/Form/Search/Common.tpl,{$form.membership_type_id.html|crmAddClass:twenty}
templates/CRM/Member/Form/Search/Common.tpl,{$form.membership_status_id.label}
templates/CRM/Member/Form/Search/Common.tpl,{$form.membership_status_id.html}
templates/CRM/Member/Form/Search/Common.tpl,{$form.member_source.label}
templates/CRM/Member/Form/Search/Common.tpl,{$form.member_source.html}
templates/CRM/Member/Form/Search/Common.tpl,{$form.membership_is_current_member.label}
templates/CRM/Member/Form/Search/Common.tpl,{$form.membership_is_current_member.html}
templates/CRM/Member/Form/Search/Common.tpl,{$form.member_test.label}
templates/CRM/Member/Form/Search/Common.tpl,{$form.member_test.html}
templates/CRM/Member/Form/Search/Common.tpl,{$form.member_is_primary.label}
templates/CRM/Member/Form/Search/Common.tpl,{$form.member_is_primary.html}
templates/CRM/Member/Form/Search/Common.tpl,{$form.membership_id.label}
templates/CRM/Member/Form/Search/Common.tpl,{$form.membership_id.html}
templates/CRM/Member/Form/Search/Common.tpl,{$form.member_pay_later.label}
templates/CRM/Member/Form/Search/Common.tpl,{$form.member_pay_later.html}
templates/CRM/Member/Form/Search/Common.tpl,{$form.member_auto_renew.label}
templates/CRM/Member/Form/Search/Common.tpl,{$form.member_auto_renew.html}
templates/CRM/Member/Form/Search/Common.tpl,{$form.member_is_override.label}
templates/CRM/Member/Form/Search/Common.tpl,{$form.member_is_override.html}
templates/CRM/Member/Form/Selector.tpl,{$form.toggleSelect.html}
templates/CRM/Member/Form/Selector.tpl,{$sort->_response.$key.link}
templates/CRM/Member/Form/Selector.tpl,{$header.name}
templates/CRM/Member/Form/Selector.tpl,{$row.membership_id}
templates/CRM/Member/Form/Selector.tpl,{$row.membership_id}
templates/CRM/Member/Form/Selector.tpl,{$form.$cbName.html}
templates/CRM/Member/Form/Selector.tpl,{$row.contact_type}
templates/CRM/Member/Form/Selector.tpl,{$row.sort_name}
templates/CRM/Member/Form/Selector.tpl,{$row.membership_type}
templates/CRM/Member/Form/Selector.tpl,{$row.membership_type}
templates/CRM/Member/Form/Selector.tpl,{$row.membership_join_date|truncate:10:''|crmDate}
templates/CRM/Member/Form/Selector.tpl,{$row.membership_start_date|truncate:10:''|crmDate}
templates/CRM/Member/Form/Selector.tpl,{$row.membership_end_date|truncate:10:''|crmDate}
templates/CRM/Member/Form/Selector.tpl,{$row.membership_source}
templates/CRM/Member/Form/Selector.tpl,{$row.membership_status}
templates/CRM/Member/Form/Selector.tpl,{$row.membership_status}
templates/CRM/Member/Form/Selector.tpl,{$row.action|replace:'xx':$row.membership_id}
templates/CRM/Member/Form/Task/Batch.tpl,{$form._qf_Batch_refresh.html}
templates/CRM/Member/Form/Task/Batch.tpl,{$fTitle}
templates/CRM/Member/Form/Task/Batch.tpl,{$config->resourceBase}
templates/CRM/Member/Form/Task/Batch.tpl,{$field.name}
templates/CRM/Member/Form/Task/Batch.tpl,{$field.title}
templates/CRM/Member/Form/Task/Batch.tpl,{$mid}
templates/CRM/Member/Form/Task/Batch.tpl,{$contactDetails.$mid.$fName}
templates/CRM/Member/Form/Task/Batch.tpl,{$form.field.$mid.$n.html}
templates/CRM/Member/Form/Task/Batch.tpl,{$form._qf_Batch_refresh.html}
templates/CRM/Member/Form/Task/Label.tpl,{$form.label_name.label}
templates/CRM/Member/Form/Task/Label.tpl,{$form.label_name.html}
templates/CRM/Member/Form/Task/Label.tpl,{$form.location_type_id.label}
templates/CRM/Member/Form/Task/Label.tpl,{$form.location_type_id.html}
templates/CRM/Member/Form/Task/Label.tpl,{$form.per_membership.html}
templates/CRM/Member/Form/Task/Label.tpl,{$form.per_membership.label}
templates/CRM/Member/Form/Task/Label.tpl,{$form.do_not_mail.html}
templates/CRM/Member/Form/Task/Label.tpl,{$form.do_not_mail.label}
templates/CRM/Member/Form/Task/Label.tpl,{$form.merge_same_address.html}
templates/CRM/Member/Form/Task/Label.tpl,{$form.merge_same_address.label}
templates/CRM/Member/Form/Task/Label.tpl,{$form.merge_same_household.html}
templates/CRM/Member/Form/Task/Label.tpl,{$form.merge_same_household.label}
templates/CRM/Member/Form/Task/PickProfile.tpl,{$form.uf_group_id.label}
templates/CRM/Member/Form/Task/PickProfile.tpl,{$form.uf_group_id.html}
templates/CRM/Member/Form/Task/Print.tpl,{$row.sort_name}
templates/CRM/Member/Form/Task/Print.tpl,{$row.membership_type}
templates/CRM/Member/Form/Task/Print.tpl,{$row.membership_type}
templates/CRM/Member/Form/Task/Print.tpl,{$row.join_date|truncate:10:''|crmDate}
templates/CRM/Member/Form/Task/Print.tpl,{$row.membership_start_date|truncate:10:''|crmDate}
templates/CRM/Member/Form/Task/Print.tpl,{$row.membership_end_date|truncate:10:''|crmDate}
templates/CRM/Member/Form/Task/Print.tpl,{$row.membership_source}
templates/CRM/Member/Form/Task/Print.tpl,{$row.membership_status}
templates/CRM/Member/Form/Task/Print.tpl,{$row.membership_status}
templates/CRM/Member/Form/Task/Print.tpl,{$config->resourceBase}
templates/CRM/Member/Form/Task/SearchTaskHookSample.tpl,{$row.display_name}
templates/CRM/Member/Form/Task/SearchTaskHookSample.tpl,{$row.start_date}
templates/CRM/Member/Form/Task/SearchTaskHookSample.tpl,{$row.end_date}
templates/CRM/Member/Form/Task/SearchTaskHookSample.tpl,{$row.source}
templates/CRM/Member/Form/Task.tpl,{$row.displayName}
templates/CRM/Member/Import/Form/DataSource.tpl,{$form.uploadFile.label}
templates/CRM/Member/Import/Form/DataSource.tpl,{$form.uploadFile.html}
templates/CRM/Member/Import/Form/DataSource.tpl,{$form.skipColumnHeader.html}
templates/CRM/Member/Import/Form/DataSource.tpl,{$form.skipColumnHeader.label}
templates/CRM/Member/Import/Form/DataSource.tpl,{$form.contactType.label}
templates/CRM/Member/Import/Form/DataSource.tpl,{$form.contactType.html}
templates/CRM/Member/Import/Form/DataSource.tpl,{$form.onDuplicate.label}
templates/CRM/Member/Import/Form/DataSource.tpl,{$form.onDuplicate.html}
templates/CRM/Member/Import/Form/DataSource.tpl,{$form.fieldSeparator.label}
templates/CRM/Member/Import/Form/DataSource.tpl,{$form.fieldSeparator.html}
templates/CRM/Member/Import/Form/DataSource.tpl,{$form.savedMapping.html}
templates/CRM/Member/Import/Form/MapField.tpl,{$initHideBoxes}
templates/CRM/Member/Import/Form/MapTable.tpl,{$dataValues[$j][$i]}
templates/CRM/Member/Import/Form/MapTable.tpl,{$mapper[$i]}
templates/CRM/Member/Import/Form/MapTable.tpl,{$form.mapper[$i].html}
templates/CRM/Member/Import/Form/MapTable.tpl,{$form.updateMapping.html}
templates/CRM/Member/Import/Form/MapTable.tpl,{$form.updateMapping.label}
templates/CRM/Member/Import/Form/MapTable.tpl,{$form.saveMapping.html}
templates/CRM/Member/Import/Form/MapTable.tpl,{$form.saveMapping.label}
templates/CRM/Member/Import/Form/MapTable.tpl,{$form.saveMappingName.label}
templates/CRM/Member/Import/Form/MapTable.tpl,{$form.saveMappingName.html}
templates/CRM/Member/Import/Form/MapTable.tpl,{$form.saveMappingDesc.label}
templates/CRM/Member/Import/Form/MapTable.tpl,{$form.saveMappingDesc.html}
templates/CRM/Member/Import/Form/Preview.tpl,{$totalRowCount}
templates/CRM/Member/Import/Form/Preview.tpl,{$invalidRowCount}
templates/CRM/Member/Import/Form/Preview.tpl,{$downloadErrorRecordsUrl}
templates/CRM/Member/Import/Form/Preview.tpl,{$conflictRowCount}
templates/CRM/Member/Import/Form/Preview.tpl,{$downloadConflictRecordsUrl}
templates/CRM/Member/Import/Form/Preview.tpl,{$validRowCount}
templates/CRM/Member/Import/Form/Summary.tpl,{$dupeActionString}
templates/CRM/Member/Import/Form/Summary.tpl,{$totalRowCount}
templates/CRM/Member/Import/Form/Summary.tpl,{$invalidRowCount}
templates/CRM/Member/Import/Form/Summary.tpl,{$downloadErrorRecordsUrl}
templates/CRM/Member/Import/Form/Summary.tpl,{$unMatchCount}
templates/CRM/Member/Import/Form/Summary.tpl,{$downloadMismatchRecordsUrl}
templates/CRM/Member/Import/Form/Summary.tpl,{$conflictRowCount}
templates/CRM/Member/Import/Form/Summary.tpl,{$downloadConflictRecordsUrl}
templates/CRM/Member/Import/Form/Summary.tpl,{$duplicateRowCount}
templates/CRM/Member/Import/Form/Summary.tpl,{$dupeActionString}
templates/CRM/Member/Import/Form/Summary.tpl,{$downloadDuplicateRecordsUrl}
templates/CRM/Member/Import/Form/Summary.tpl,{$validRowCount}
templates/CRM/Member/Page/DashBoard.tpl,{$premonth}
templates/CRM/Member/Page/DashBoard.tpl,{$month}
templates/CRM/Member/Page/DashBoard.tpl,{$year}
templates/CRM/Member/Page/DashBoard.tpl,{$year}
templates/CRM/Member/Page/DashBoard.tpl,{$row.month.total.name}
templates/CRM/Member/Page/DashBoard.tpl,{$row.premonth.new.url}
templates/CRM/Member/Page/DashBoard.tpl,{$row.premonth.new.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.premonth.new.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.premonth.renew.url}
templates/CRM/Member/Page/DashBoard.tpl,{$row.premonth.renew.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.premonth.renew.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.premonth.total.url}
templates/CRM/Member/Page/DashBoard.tpl,{$row.premonth.total.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.premonth.total.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.premonth_owner.premonth_owner.url}
templates/CRM/Member/Page/DashBoard.tpl,{$row.premonth_owner.premonth_owner.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.premonth_owner.premonth_owner.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.month.new.url}
templates/CRM/Member/Page/DashBoard.tpl,{$row.month.new.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.month.new.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.month.renew.url}
templates/CRM/Member/Page/DashBoard.tpl,{$row.month.renew.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.month.renew.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.month.total.url}
templates/CRM/Member/Page/DashBoard.tpl,{$row.month.total.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.month.total.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.month_owner.month_owner.url}
templates/CRM/Member/Page/DashBoard.tpl,{$row.month_owner.month_owner.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.month_owner.month_owner.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.year.new.url}
templates/CRM/Member/Page/DashBoard.tpl,{$row.year.new.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.year.new.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.year.renew.url}
templates/CRM/Member/Page/DashBoard.tpl,{$row.year.renew.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.year.renew.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.year.total.url}
templates/CRM/Member/Page/DashBoard.tpl,{$row.year.total.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.year.total.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.year_owner.year_owner.url}
templates/CRM/Member/Page/DashBoard.tpl,{$row.year_owner.year_owner.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.year_owner.year_owner.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.current.total.url}
templates/CRM/Member/Page/DashBoard.tpl,{$row.current.total.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.current.total.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.current_owner.current_owner.url}
templates/CRM/Member/Page/DashBoard.tpl,{$row.current_owner.current_owner.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.current_owner.current_owner.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.total.total.url}
templates/CRM/Member/Page/DashBoard.tpl,{$row.total.total.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.total.total.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.total_owner.total_owner.url}
templates/CRM/Member/Page/DashBoard.tpl,{$row.total_owner.total_owner.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.total_owner.total_owner.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.premonth.new.url}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.premonth.new.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.premonth.new.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.premonth.renew.url}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.premonth.renew.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.premonth.renew.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.premonth.total.url}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.premonth.total.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.premonth.total.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.premonth_owner.premonth_owner.url}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.premonth_owner.premonth_owner.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.premonth_owner.premonth_owner.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.month.new.url}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.month.new.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.month.new.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.month.renew.url}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.month.renew.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.month.renew.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.month.total.url}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.month.total.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.month.total.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.month_owner.month_owner.url}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.month_owner.month_owner.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.month_owner.month_owner.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.year.new.url}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.year.new.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.year.new.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.year.renew.url}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.year.renew.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.year.renew.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.year.total.url}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.year.total.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.year.total.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.year_owner.year_owner.url}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.year_owner.year_owner.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.year_owner.year_owner.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.total.total.url}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.current.total.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.current.total.count}
templates/CRM/Member/Page/DashBoard.tpl,{$row.total_owner.total_owner.url}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.current_owner.current_owner.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.current_owner.current_owner.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.total.url}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.total.total.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.total.total.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.total_owner.total_owner.url}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.total_owner.total_owner.count}
templates/CRM/Member/Page/DashBoard.tpl,{$totalCount.total_owner.total_owner.count}
templates/CRM/Member/Page/MembershipStatus.tpl,{$row.id}
templates/CRM/Member/Page/MembershipStatus.tpl,{$row.class}
templates/CRM/Member/Page/MembershipStatus.tpl,{$row.label}
templates/CRM/Member/Page/MembershipStatus.tpl,{$row.start_event}
templates/CRM/Member/Page/MembershipStatus.tpl,{$row.end_event}
templates/CRM/Member/Page/MembershipStatus.tpl,{$row.weight}
templates/CRM/Member/Page/MembershipStatus.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Member/Page/MembershipStatus.tpl,{$config->resourceBase}
templates/CRM/Member/Page/MembershipType.tpl,{$row.id}
templates/CRM/Member/Page/MembershipType.tpl,{$row.class}
templates/CRM/Member/Page/MembershipType.tpl,{$row.name}
templates/CRM/Member/Page/MembershipType.tpl,{$row.period_type}
templates/CRM/Member/Page/MembershipType.tpl,{$row.fixed_period_start_day}
templates/CRM/Member/Page/MembershipType.tpl,{$row.minimum_fee|crmMoney}
templates/CRM/Member/Page/MembershipType.tpl,{$row.duration_interval}
templates/CRM/Member/Page/MembershipType.tpl,{$row.duration_unit}
templates/CRM/Member/Page/MembershipType.tpl,{$row.relationshipTypeName}
templates/CRM/Member/Page/MembershipType.tpl,{$row.maxRelated}
templates/CRM/Member/Page/MembershipType.tpl,{$row.visibility}
templates/CRM/Member/Page/MembershipType.tpl,{$row.weight}
templates/CRM/Member/Page/MembershipType.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Member/Page/MembershipType.tpl,{$config->resourceBase}
templates/CRM/Member/Page/Tab.tpl,{$newURL}
templates/CRM/Member/Page/Tab.tpl,{$newCreditURL}
templates/CRM/Member/Page/Tab.tpl,{$newURL}
templates/CRM/Member/Page/Tab.tpl,{$newCreditURL}
templates/CRM/Member/Page/Tab.tpl,{$activeMember.id}
templates/CRM/Member/Page/Tab.tpl,{$activeMember.class}
templates/CRM/Member/Page/Tab.tpl,{$activeMember.membership_type}
templates/CRM/Member/Page/Tab.tpl,{$activeMember.join_date}
templates/CRM/Member/Page/Tab.tpl,{$activeMember.join_date|crmDate}
templates/CRM/Member/Page/Tab.tpl,{$activeMember.start_date}
templates/CRM/Member/Page/Tab.tpl,{$activeMember.start_date|crmDate}
templates/CRM/Member/Page/Tab.tpl,{$activeMember.end_date}
templates/CRM/Member/Page/Tab.tpl,{$activeMember.end_date|crmDate}
templates/CRM/Member/Page/Tab.tpl,{$activeMember.status}
templates/CRM/Member/Page/Tab.tpl,{$activeMember.source}
templates/CRM/Member/Page/Tab.tpl,{$activeMember.related_count}
templates/CRM/Member/Page/Tab.tpl,{$activeMember.action|replace:'xx':$activeMember.id}
templates/CRM/Member/Page/Tab.tpl,{$inActiveMember.id}
templates/CRM/Member/Page/Tab.tpl,{$inActiveMember.class}
templates/CRM/Member/Page/Tab.tpl,{$inActiveMember.membership_type}
templates/CRM/Member/Page/Tab.tpl,{$inActiveMember.join_date}
templates/CRM/Member/Page/Tab.tpl,{$inActiveMember.join_date|crmDate}
templates/CRM/Member/Page/Tab.tpl,{$inActiveMember.start_date}
templates/CRM/Member/Page/Tab.tpl,{$inActiveMember.start_date|crmDate}
templates/CRM/Member/Page/Tab.tpl,{$inActiveMember.end_date}
templates/CRM/Member/Page/Tab.tpl,{$inActiveMember.end_date|crmDate}
templates/CRM/Member/Page/Tab.tpl,{$inActiveMember.status}
templates/CRM/Member/Page/Tab.tpl,{$inActiveMember.source}
templates/CRM/Member/Page/Tab.tpl,{$inActiveMember.action|replace:'xx':$inActiveMember.id}
templates/CRM/Member/Page/Tab.tpl,{$membershipType.class}
templates/CRM/Member/Page/Tab.tpl,{$membershipType.name}
templates/CRM/Member/Page/Tab.tpl,{$membershipType.period_type}
templates/CRM/Member/Page/Tab.tpl,{$membershipType.fixed_period_start_day}
templates/CRM/Member/Page/Tab.tpl,{$membershipType.minimum_fee}
templates/CRM/Member/Page/Tab.tpl,{$membershipType.duration_unit}
templates/CRM/Member/Page/Tab.tpl,{$membershipType.visibility}
templates/CRM/Member/Page/Tab.tpl,{$membershipType.action|replace:xx:$membershipType.id}
templates/CRM/Member/Page/UserDashboard.tpl,{$activeMember.class}
templates/CRM/Member/Page/UserDashboard.tpl,{$activeMember.membership_type}
templates/CRM/Member/Page/UserDashboard.tpl,{$activeMember.join_date|crmDate}
templates/CRM/Member/Page/UserDashboard.tpl,{$activeMember.start_date|crmDate}
templates/CRM/Member/Page/UserDashboard.tpl,{$activeMember.end_date|crmDate}
templates/CRM/Member/Page/UserDashboard.tpl,{$activeMember.status}
templates/CRM/Member/Page/UserDashboard.tpl,{$inActiveMember.class}
templates/CRM/Member/Page/UserDashboard.tpl,{$inActiveMember.membership_type}
templates/CRM/Member/Page/UserDashboard.tpl,{$inActiveMember.start_date|crmDate}
templates/CRM/Member/Page/UserDashboard.tpl,{$inActiveMember.end_date|crmDate}
templates/CRM/Member/Page/UserDashboard.tpl,{$inActiveMember.status}
templates/CRM/PCP/Form/Campaign.tpl,{$form.pcp_title.label}
templates/CRM/PCP/Form/Campaign.tpl,{$form.pcp_title.html|crmAddClass:big}
templates/CRM/PCP/Form/Campaign.tpl,{$form.pcp_intro_text.label}
templates/CRM/PCP/Form/Campaign.tpl,{$form.pcp_intro_text.html|crmAddClass:big}
templates/CRM/PCP/Form/Campaign.tpl,{$form.goal_amount.label}
templates/CRM/PCP/Form/Campaign.tpl,{$form.goal_amount.html|crmAddClass:six}
templates/CRM/PCP/Form/Campaign.tpl,{$form.is_thermometer.label}
templates/CRM/PCP/Form/Campaign.tpl,{$form.is_thermometer.html}
templates/CRM/PCP/Form/Campaign.tpl,{$form.donate_link_text.label}
templates/CRM/PCP/Form/Campaign.tpl,{$form.donate_link_text.html}
templates/CRM/PCP/Form/Campaign.tpl,{$form.page_text.label}
templates/CRM/PCP/Form/Campaign.tpl,{$form.page_text.html|crmAddClass:huge}
templates/CRM/PCP/Form/Campaign.tpl,{$form.is_honor_roll.label}
templates/CRM/PCP/Form/Campaign.tpl,{$form.is_honor_roll.html}
templates/CRM/PCP/Form/Campaign.tpl,{$form.is_notify.label}
templates/CRM/PCP/Form/Campaign.tpl,{$form.is_notify.html}
templates/CRM/PCP/Form/Campaign.tpl,{$form.is_active.label}
templates/CRM/PCP/Form/Campaign.tpl,{$form.is_active.html}
templates/CRM/PCP/Form/PCP/Delete.tpl,{$form.buttons.html}
templates/CRM/PCP/Form/PCP/PCP.tpl,{$form.status_id.label}
templates/CRM/PCP/Form/PCP/PCP.tpl,{$form.status_id.html}
templates/CRM/PCP/Form/PCP/PCP.tpl,{$form.page_type.label}
templates/CRM/PCP/Form/PCP/PCP.tpl,{$form.page_type.html}
templates/CRM/PCP/Form/PCP/PCP.tpl,{$form.page_id.label}
templates/CRM/PCP/Form/PCP/PCP.tpl,{$form.page_id.html}
templates/CRM/PCP/Form/PCP/PCP.tpl,{$form.event_id.label}
templates/CRM/PCP/Form/PCP/PCP.tpl,{$form.event_id.html}
templates/CRM/PCP/Form/PCP/PCP.tpl,{$form.buttons.html}
templates/CRM/PCP/Form/PCP.tpl,{$form.pcp_active.html}
templates/CRM/PCP/Form/PCP.tpl,{$form.pcp_active.label}
templates/CRM/PCP/Form/PCP.tpl,{$form.target_entity_type.label}
templates/CRM/PCP/Form/PCP.tpl,{$form.target_entity_type.html}
templates/CRM/PCP/Form/PCP.tpl,{$form.target_entity_id.label}
templates/CRM/PCP/Form/PCP.tpl,{$form.target_entity_id.html}
templates/CRM/PCP/Form/PCP.tpl,{$form.is_approval_needed.label}
templates/CRM/PCP/Form/PCP.tpl,{$form.is_approval_needed.html}
templates/CRM/PCP/Form/PCP.tpl,{$form.notify_email.label}
templates/CRM/PCP/Form/PCP.tpl,{$form.notify_email.html}
templates/CRM/PCP/Form/PCP.tpl,{$form.supporter_profile_id.label}
templates/CRM/PCP/Form/PCP.tpl,{$form.supporter_profile_id.html}
templates/CRM/PCP/Form/PCP.tpl,{$form.owner_notify_id.label}
templates/CRM/PCP/Form/PCP.tpl,{$form.owner_notify_id.html}
templates/CRM/PCP/Form/PCP.tpl,{$form.is_tellfriend_enabled.label}
templates/CRM/PCP/Form/PCP.tpl,{$form.is_tellfriend_enabled.html}
templates/CRM/PCP/Form/PCP.tpl,{$form.tellfriend_limit.label}
templates/CRM/PCP/Form/PCP.tpl,{$form.tellfriend_limit.html|crmAddClass:four}
templates/CRM/PCP/Form/PCP.tpl,{$form.link_text.label}
templates/CRM/PCP/Form/PCP.tpl,{$form.link_text.html|crmAddClass:huge}
templates/CRM/PCP/Page/PCP.tpl,{$row.id}
templates/CRM/PCP/Page/PCP.tpl,{$row.class}
templates/CRM/PCP/Page/PCP.tpl,{$row.title}
templates/CRM/PCP/Page/PCP.tpl,{$row.supporter}
templates/CRM/PCP/Page/PCP.tpl,{$row.page_url}
templates/CRM/PCP/Page/PCP.tpl,{$row.page_title}
templates/CRM/PCP/Page/PCP.tpl,{$row.start_date|crmDate}
templates/CRM/PCP/Page/PCP.tpl,{$row.end_date|crmDate}
templates/CRM/PCP/Page/PCP.tpl,{$row.status_id}
templates/CRM/PCP/Page/PCP.tpl,{$row.id}
templates/CRM/PCP/Page/PCP.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/PCP/Page/PCPInfo.tpl,{$parentURL}
templates/CRM/PCP/Page/PCPInfo.tpl,{$pageName}
templates/CRM/PCP/Page/PCPInfo.tpl,{$owner.status}
templates/CRM/PCP/Page/PCPInfo.tpl,{$owner.registration_start_date|truncate:10:''|crmDate}
templates/CRM/PCP/Page/PCPInfo.tpl,{$owner.registration_end_date|truncate:10:''|crmDate}
templates/CRM/PCP/Page/PCPInfo.tpl,{$owner.start_date|truncate:10:''|crmDate}
templates/CRM/PCP/Page/PCPInfo.tpl,{$owner.end_date|truncate:10:''|crmDate}
templates/CRM/PCP/Page/PCPInfo.tpl,{$v.title|escape:'html'}
templates/CRM/PCP/Page/PCPInfo.tpl,{$v.extra}
templates/CRM/PCP/Page/PCPInfo.tpl,{$v.name}
templates/CRM/PCP/Page/PCPInfo.tpl,{$hints.$k}
templates/CRM/PCP/Page/PCPInfo.tpl,{$pcp.intro_text}
templates/CRM/PCP/Page/PCPInfo.tpl,{$image}
templates/CRM/PCP/Page/PCPInfo.tpl,{$pcp.goal_amount|crmMoney}
templates/CRM/PCP/Page/PCPInfo.tpl,{$achieved}
templates/CRM/PCP/Page/PCPInfo.tpl,{$achieved}
templates/CRM/PCP/Page/PCPInfo.tpl,{$total|crmMoney}
templates/CRM/PCP/Page/PCPInfo.tpl,{$v.nickname}
templates/CRM/PCP/Page/PCPInfo.tpl,{$v.total_amount}
templates/CRM/PCP/Page/PCPInfo.tpl,{$v.personal_note}
templates/CRM/PCP/Page/PCPInfo.tpl,{$pcp.page_text}
templates/CRM/PCP/Page/PCPInfo.tpl,{$contributeURL}
templates/CRM/PCP/Page/PCPInfo.tpl,{$contributionText}
templates/CRM/PCP/Page/PCPInfo.tpl,{$linkTextUrl}
templates/CRM/PCP/Page/PCPInfo.tpl,{$linkText}
templates/CRM/Pledge/Form/Payment.tpl,{$status}
templates/CRM/Pledge/Form/Payment.tpl,{$form.scheduled_date.label}
templates/CRM/Pledge/Form/Payment.tpl,{$form.scheduled_date.html}
templates/CRM/Pledge/Form/Payment.tpl,{$form.scheduled_amount.label}
templates/CRM/Pledge/Form/Payment.tpl,{$form.currency.html}
templates/CRM/Pledge/Form/Payment.tpl,{$form.scheduled_amount.html}
templates/CRM/Pledge/Form/Payment.tpl,{$form.option_type.html}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.contact_id.label}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.contact_id.html}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.amount.label}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.currency.html|crmAddClass:eight}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.amount.html|crmAddClass:eight}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.installments.label}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.installments.html}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.eachPaymentAmount.html|crmMoney:$currency}
templates/CRM/Pledge/Form/Pledge.tpl,{$eachPaymentAmount|crmMoney:$currency}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.frequency_interval.html}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.frequency_unit.html}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.frequency_day.label}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.frequency_day.html}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.create_date.label}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.create_date.html}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.start_date.label}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.start_date.html}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.is_acknowledge.label}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.is_acknowledge.html}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.is_acknowledge.label}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.is_acknowledge.html}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.from_email_address.label}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.from_email_address.html}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.acknowledge_date.label}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.acknowledge_date.html}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.financial_type_id.label}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.financial_type_id.html}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.contribution_page_id.label}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.contribution_page_id.html}
templates/CRM/Pledge/Form/Pledge.tpl,{$status}
templates/CRM/Pledge/Form/Pledge.tpl,{$contributionMode}
templates/CRM/Pledge/Form/Pledge.tpl,{$config->resourceBase}
templates/CRM/Pledge/Form/Pledge.tpl,{$paneValue.id}
templates/CRM/Pledge/Form/Pledge.tpl,{$paneValue.id}
templates/CRM/Pledge/Form/Pledge.tpl,{$paneName}
templates/CRM/Pledge/Form/Pledge.tpl,{$paneValue.id}
templates/CRM/Pledge/Form/Pledge.tpl,{$email}
templates/CRM/Pledge/Form/Pledge.tpl,{$config->monetaryDecimalPoint}
templates/CRM/Pledge/Form/Pledge.tpl,{$form.formClass}
templates/CRM/Pledge/Form/PledgeView.tpl,{$displayName}
templates/CRM/Pledge/Form/PledgeView.tpl,{$amount|crmMoney:$currency}
templates/CRM/Pledge/Form/PledgeView.tpl,{$installments}
templates/CRM/Pledge/Form/PledgeView.tpl,{$original_installment_amount|crmMoney:$currency}
templates/CRM/Pledge/Form/PledgeView.tpl,{$frequency_interval}
templates/CRM/Pledge/Form/PledgeView.tpl,{$frequencyUnit}
templates/CRM/Pledge/Form/PledgeView.tpl,{$frequency_day}
templates/CRM/Pledge/Form/PledgeView.tpl,{$create_date|truncate:10:''|crmDate}
templates/CRM/Pledge/Form/PledgeView.tpl,{$start_date|truncate:10:''|crmDate}
templates/CRM/Pledge/Form/PledgeView.tpl,{$end_date|truncate:10:''|crmDate}
templates/CRM/Pledge/Form/PledgeView.tpl,{$cancel_date|truncate:10:''|crmDate}
templates/CRM/Pledge/Form/PledgeView.tpl,{$financial_type}
templates/CRM/Pledge/Form/PledgeView.tpl,{$campaign}
templates/CRM/Pledge/Form/PledgeView.tpl,{$acknowledge_date|truncate:10:''|crmDate}
templates/CRM/Pledge/Form/PledgeView.tpl,{$contribution_page}
templates/CRM/Pledge/Form/PledgeView.tpl,{$pledge_status}
templates/CRM/Pledge/Form/PledgeView.tpl,{$honor_type}
templates/CRM/Pledge/Form/PledgeView.tpl,{$honor_display}
templates/CRM/Pledge/Form/PledgeView.tpl,{$initial_reminder_day}
templates/CRM/Pledge/Form/PledgeView.tpl,{$max_reminders}
templates/CRM/Pledge/Form/PledgeView.tpl,{$additional_reminder_day}
templates/CRM/Pledge/Form/Search/Common.tpl,{$form.pledge_payment_status_id.html}
templates/CRM/Pledge/Form/Search/Common.tpl,{$form.pledge_amount_low.label}
templates/CRM/Pledge/Form/Search/Common.tpl,{$form.pledge_amount_low.html}
templates/CRM/Pledge/Form/Search/Common.tpl,{$form.pledge_amount_high.label}
templates/CRM/Pledge/Form/Search/Common.tpl,{$form.pledge_amount_high.html}
templates/CRM/Pledge/Form/Search/Common.tpl,{$form.pledge_status_id.html}
templates/CRM/Pledge/Form/Search/Common.tpl,{$form.pledge_financial_type_id.html}
templates/CRM/Pledge/Form/Search/Common.tpl,{$form.pledge_contribution_page_id.html}
templates/CRM/Pledge/Form/Search/Common.tpl,{$form.pledge_test.label}
templates/CRM/Pledge/Form/Search/Common.tpl,{$form.pledge_test.html}
templates/CRM/Pledge/Form/Search/Common.tpl,{$form.pledge_frequency_unit.label}
templates/CRM/Pledge/Form/Search/Common.tpl,{$form.pledge_frequency_interval.label}
templates/CRM/Pledge/Form/Search/Common.tpl,{$form.pledge_frequency_interval.html}
templates/CRM/Pledge/Form/Search/Common.tpl,{$form.pledge_frequency_unit.html}
templates/CRM/Pledge/Form/Search/Common.tpl,{$form.pledge_installments_low.label}
templates/CRM/Pledge/Form/Search/Common.tpl,{$form.pledge_installments_low.html}
templates/CRM/Pledge/Form/Search/Common.tpl,{$form.pledge_installments_high.label}
templates/CRM/Pledge/Form/Search/Common.tpl,{$form.pledge_installments_high.html}
templates/CRM/Pledge/Form/Search/Common.tpl,{$form.pledge_acknowledge_date_is_not_null.label}
templates/CRM/Pledge/Form/Search/Common.tpl,{$form.pledge_acknowledge_date_is_not_null.html}
templates/CRM/Pledge/Form/Search.tpl,{$form.buttons.html}
templates/CRM/Pledge/Form/Selector.tpl,{$form.toggleSelect.html}
templates/CRM/Pledge/Form/Selector.tpl,{$sort->_response.$key.link}
templates/CRM/Pledge/Form/Selector.tpl,{$header.name}
templates/CRM/Pledge/Form/Selector.tpl,{$row.pledge_id}
templates/CRM/Pledge/Form/Selector.tpl,{$rowClass}
templates/CRM/Pledge/Form/Selector.tpl,{$form.$cbName.html}
templates/CRM/Pledge/Form/Selector.tpl,{$row.contact_type}
templates/CRM/Pledge/Form/Selector.tpl,{$row.sort_name}
templates/CRM/Pledge/Form/Selector.tpl,{$row.pledge_amount|crmMoney:$row.pledge_currency}
templates/CRM/Pledge/Form/Selector.tpl,{$row.pledge_total_paid|crmMoney:$row.pledge_currency}
templates/CRM/Pledge/Form/Selector.tpl,{$row.pledge_amount-$row.pledge_total_paid|crmMoney:$row.pledge_currency}
templates/CRM/Pledge/Form/Selector.tpl,{$row.pledge_financial_type}
templates/CRM/Pledge/Form/Selector.tpl,{$row.pledge_create_date|truncate:10:''|crmDate}
templates/CRM/Pledge/Form/Selector.tpl,{$row.pledge_next_pay_date|truncate:10:''|crmDate}
templates/CRM/Pledge/Form/Selector.tpl,{$row.pledge_next_pay_amount|crmMoney:$row.pledge_currency}
templates/CRM/Pledge/Form/Selector.tpl,{$row.pledge_status}
templates/CRM/Pledge/Form/Selector.tpl,{$row.action|replace:'xx':$row.pledge_id}
templates/CRM/Pledge/Form/Task/Print.tpl,{$form.buttons.html}
templates/CRM/Pledge/Form/Task/Print.tpl,{$row.sort_name}
templates/CRM/Pledge/Form/Task/Print.tpl,{$row.pledge_amount|crmMoney}
templates/CRM/Pledge/Form/Task/Print.tpl,{$row.pledge_create_date|truncate:10:''|crmDate}
templates/CRM/Pledge/Form/Task/Print.tpl,{$row.pledge_frequency_interval}
templates/CRM/Pledge/Form/Task/Print.tpl,{$row.pledge_frequency_unit|capitalize:true}
templates/CRM/Pledge/Form/Task/Print.tpl,{$row.pledge_start_date|truncate:10:''|crmDate}
templates/CRM/Pledge/Form/Task/Print.tpl,{$row.pledge_status_id}
templates/CRM/Pledge/Form/Task/Print.tpl,{$form.buttons.html}
templates/CRM/Pledge/Form/Task/SaveSearch.tpl,{$criteria}
templates/CRM/Pledge/Form/Task/SaveSearch.tpl,{$form.title.label}
templates/CRM/Pledge/Form/Task/SaveSearch.tpl,{$form.title.html}
templates/CRM/Pledge/Form/Task/SaveSearch.tpl,{$form.description.label}
templates/CRM/Pledge/Form/Task/SaveSearch.tpl,{$form.description.html}
templates/CRM/Pledge/Form/Task/SearchTaskHookSample.tpl,{$form.buttons.html}
templates/CRM/Pledge/Form/Task/SearchTaskHookSample.tpl,{$row.display_name}
templates/CRM/Pledge/Form/Task/SearchTaskHookSample.tpl,{$row.amount}
templates/CRM/Pledge/Form/Task/SearchTaskHookSample.tpl,{$row.create_date}
templates/CRM/Pledge/Form/Task/SearchTaskHookSample.tpl,{$form.buttons.html}
templates/CRM/Pledge/Form/Task.tpl,{$row.displayName}
templates/CRM/Pledge/Page/DashBoard.tpl,{$previousMonthYear}
templates/CRM/Pledge/Page/DashBoard.tpl,{$currentMonthYear}
templates/CRM/Pledge/Page/DashBoard.tpl,{$curYear}
templates/CRM/Pledge/Page/DashBoard.tpl,{$previousToDate.Completed.purl}
templates/CRM/Pledge/Page/DashBoard.tpl,{$previousToDate.Completed.pledge_count}
templates/CRM/Pledge/Page/DashBoard.tpl,{$previousToDate.Completed.purl}
templates/CRM/Pledge/Page/DashBoard.tpl,{$previousToDate.Completed.pledge_amount}
templates/CRM/Pledge/Page/DashBoard.tpl,{$monthToDate.Completed.purl}
templates/CRM/Pledge/Page/DashBoard.tpl,{$monthToDate.Completed.pledge_count}
templates/CRM/Pledge/Page/DashBoard.tpl,{$monthToDate.Completed.purl}
templates/CRM/Pledge/Page/DashBoard.tpl,{$monthToDate.Completed.pledge_amount}
templates/CRM/Pledge/Page/DashBoard.tpl,{$yearToDate.Completed.purl}
templates/CRM/Pledge/Page/DashBoard.tpl,{$yearToDate.Completed.pledge_count}
templates/CRM/Pledge/Page/DashBoard.tpl,{$yearToDate.Completed.purl}
templates/CRM/Pledge/Page/DashBoard.tpl,{$yearToDate.Completed.pledge_amount}
templates/CRM/Pledge/Page/DashBoard.tpl,{$startToDate.Completed.purl}
templates/CRM/Pledge/Page/DashBoard.tpl,{$startToDate.Completed.pledge_count}
templates/CRM/Pledge/Page/DashBoard.tpl,{$startToDate.Completed.purl}
templates/CRM/Pledge/Page/DashBoard.tpl,{$startToDate.Completed.pledge_amount}
templates/CRM/Pledge/Page/DashBoard.tpl,{$previousToDate.Completed.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$previousToDate.Completed.received_count}
templates/CRM/Pledge/Page/DashBoard.tpl,{$previousToDate.Completed.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$previousToDate.Completed.received_amount}
templates/CRM/Pledge/Page/DashBoard.tpl,{$monthToDate.Completed.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$monthToDate.Completed.received_count}
templates/CRM/Pledge/Page/DashBoard.tpl,{$monthToDate.Completed.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$monthToDate.Completed.received_amount}
templates/CRM/Pledge/Page/DashBoard.tpl,{$yearToDate.Completed.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$yearToDate.Completed.received_count}
templates/CRM/Pledge/Page/DashBoard.tpl,{$yearToDate.Completed.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$yearToDate.Completed.received_amount}
templates/CRM/Pledge/Page/DashBoard.tpl,{$startToDate.Completed.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$startToDate.Completed.received_count}
templates/CRM/Pledge/Page/DashBoard.tpl,{$startToDate.Completed.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$startToDate.Completed.received_amount}
templates/CRM/Pledge/Page/DashBoard.tpl,{$previousToDate.Pending.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$previousToDate.Pending.received_count}
templates/CRM/Pledge/Page/DashBoard.tpl,{$previousToDate.Pending.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$previousToDate.Pending.received_amount}
templates/CRM/Pledge/Page/DashBoard.tpl,{$monthToDate.Pending.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$monthToDate.Pending.received_count}
templates/CRM/Pledge/Page/DashBoard.tpl,{$monthToDate.Pending.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$monthToDate.Pending.received_amount}
templates/CRM/Pledge/Page/DashBoard.tpl,{$yearToDate.Pending.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$yearToDate.Pending.received_count}
templates/CRM/Pledge/Page/DashBoard.tpl,{$yearToDate.Pending.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$yearToDate.Pending.received_amount}
templates/CRM/Pledge/Page/DashBoard.tpl,{$startToDate.Pending.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$startToDate.Pending.received_count}
templates/CRM/Pledge/Page/DashBoard.tpl,{$startToDate.Pending.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$startToDate.Pending.received_amount}
templates/CRM/Pledge/Page/DashBoard.tpl,{$previousToDate.Overdue.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$previousToDate.Overdue.received_count}
templates/CRM/Pledge/Page/DashBoard.tpl,{$previousToDate.Overdue.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$previousToDate.Overdue.received_amount}
templates/CRM/Pledge/Page/DashBoard.tpl,{$monthToDate.Overdue.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$monthToDate.Overdue.received_count}
templates/CRM/Pledge/Page/DashBoard.tpl,{$monthToDate.Overdue.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$monthToDate.Overdue.received_amount}
templates/CRM/Pledge/Page/DashBoard.tpl,{$yearToDate.Overdue.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$yearToDate.Overdue.received_count}
templates/CRM/Pledge/Page/DashBoard.tpl,{$yearToDate.Overdue.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$yearToDate.Overdue.received_amount}
templates/CRM/Pledge/Page/DashBoard.tpl,{$startToDate.Overdue.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$startToDate.Overdue.received_count}
templates/CRM/Pledge/Page/DashBoard.tpl,{$startToDate.Overdue.url}
templates/CRM/Pledge/Page/DashBoard.tpl,{$startToDate.Overdue.received_amount}
templates/CRM/Pledge/Page/Payment.tpl,{$row.scheduled_amount|crmMoney:$row.currency}
templates/CRM/Pledge/Page/Payment.tpl,{$row.scheduled_date|truncate:10:''|crmDate}
templates/CRM/Pledge/Page/Payment.tpl,{$row.total_amount|crmMoney:$row.currency}
templates/CRM/Pledge/Page/Payment.tpl,{$row.receive_date|truncate:10:''|crmDate}
templates/CRM/Pledge/Page/Payment.tpl,{$row.reminder_date|truncate:10:''|crmDate}
templates/CRM/Pledge/Page/Payment.tpl,{$row.reminder_count}
templates/CRM/Pledge/Page/Payment.tpl,{$row.label}
templates/CRM/Pledge/Page/Payment.tpl,{$viewContribURL}
templates/CRM/Pledge/Page/Payment.tpl,{$newContribURL}
templates/CRM/Pledge/Page/Payment.tpl,{$newCreditURL}
templates/CRM/Pledge/Page/Payment.tpl,{$editURL}
templates/CRM/Pledge/Page/Tab.tpl,{$newContribURL}
templates/CRM/Pledge/Page/Tab.tpl,{$newContribURL}
templates/CRM/Pledge/Page/UserDashboard.tpl,{$header.name}
templates/CRM/Pledge/Page/UserDashboard.tpl,{$row.pledge_id}
templates/CRM/Pledge/Page/UserDashboard.tpl,{$row.pledge_id}
templates/CRM/Pledge/Page/UserDashboard.tpl,{$row.pledge_amount|crmMoney:$row.pledge_currency}
templates/CRM/Pledge/Page/UserDashboard.tpl,{$row.pledge_total_paid|crmMoney:$row.pledge_currency}
templates/CRM/Pledge/Page/UserDashboard.tpl,{$row.pledge_amount-$row.pledge_total_paid|crmMoney:$row.pledge_currency}
templates/CRM/Pledge/Page/UserDashboard.tpl,{$row.pledge_financial_type}
templates/CRM/Pledge/Page/UserDashboard.tpl,{$row.pledge_create_date|truncate:10:''|crmDate}
templates/CRM/Pledge/Page/UserDashboard.tpl,{$row.pledge_next_pay_date|truncate:10:''|crmDate}
templates/CRM/Pledge/Page/UserDashboard.tpl,{$row.pledge_next_pay_amount|crmMoney:$row.pledge_currency}
templates/CRM/Pledge/Page/UserDashboard.tpl,{$row.pledge_status}
templates/CRM/Pledge/Page/UserDashboard.tpl,{$row.pledge_status}
templates/CRM/Pledge/Page/UserDashboard.tpl,{$row.honorId}
templates/CRM/Pledge/Page/UserDashboard.tpl,{$row.display_name}
templates/CRM/Pledge/Page/UserDashboard.tpl,{$row.amount|crmMoney:$row.pledge_currency}
templates/CRM/Pledge/Page/UserDashboard.tpl,{$row.honor_type}
templates/CRM/Pledge/Page/UserDashboard.tpl,{$row.type}
templates/CRM/Pledge/Page/UserDashboard.tpl,{$row.create_date|truncate:10:''|crmDate}
templates/CRM/Pledge/Page/UserDashboard.tpl,{$row.acknowledge_date|truncate:10:''|crmDate}
templates/CRM/Pledge/Page/UserDashboard.tpl,{$row.status}
templates/CRM/Price/Form/Calculate.tpl,{$config->monetaryThousandSeparator}
templates/CRM/Price/Form/Calculate.tpl,{$config->monetaryDecimalPoint}
templates/CRM/Price/Form/Calculate.tpl,{$currencySymbol}
templates/CRM/Price/Form/DeleteSet.tpl,{$config->resourceBase}
templates/CRM/Price/Form/Field.tpl,{$form.label.label}
templates/CRM/Price/Form/Field.tpl,{$form.label.html}
templates/CRM/Price/Form/Field.tpl,{$form.html_type.label}
templates/CRM/Price/Form/Field.tpl,{$form.html_type.html}
templates/CRM/Price/Form/Field.tpl,{$form.price.label}
templates/CRM/Price/Form/Field.tpl,{$form.price.html}
templates/CRM/Price/Form/Field.tpl,{$form.non_deductible_amount.label}
templates/CRM/Price/Form/Field.tpl,{$form.non_deductible_amount.html}
templates/CRM/Price/Form/Field.tpl,{$form.count.label}
templates/CRM/Price/Form/Field.tpl,{$form.count.html}
templates/CRM/Price/Form/Field.tpl,{$form.max_value.label}
templates/CRM/Price/Form/Field.tpl,{$form.max_value.html}
templates/CRM/Price/Form/Field.tpl,{$form.financial_type_id.label}
templates/CRM/Price/Form/Field.tpl,{$form.financial_type_id.html}
templates/CRM/Price/Form/Field.tpl,{$form.options_per_line.label}
templates/CRM/Price/Form/Field.tpl,{$form.options_per_line.html|crmAddClass:two}
templates/CRM/Price/Form/Field.tpl,{$form.is_display_amounts.label}
templates/CRM/Price/Form/Field.tpl,{$form.is_display_amounts.html}
templates/CRM/Price/Form/Field.tpl,{$form.weight.label}
templates/CRM/Price/Form/Field.tpl,{$form.weight.html|crmAddClass:two}
templates/CRM/Price/Form/Field.tpl,{$form.help_pre.label}
templates/CRM/Price/Form/Field.tpl,{$form.help_pre.html|crmAddClass:huge}
templates/CRM/Price/Form/Field.tpl,{$form.help_post.label}
templates/CRM/Price/Form/Field.tpl,{$form.help_post.html|crmAddClass:huge}
templates/CRM/Price/Form/Field.tpl,{$form.active_on.label}
templates/CRM/Price/Form/Field.tpl,{$form.active_on.html}
templates/CRM/Price/Form/Field.tpl,{$form.expire_on.label}
templates/CRM/Price/Form/Field.tpl,{$form.expire_on.html}
templates/CRM/Price/Form/Field.tpl,{$form.is_required.label}
templates/CRM/Price/Form/Field.tpl,{$form.is_required.html}
templates/CRM/Price/Form/Field.tpl,{$form.visibility_id.label}
templates/CRM/Price/Form/Field.tpl,{$form.visibility_id.html}
templates/CRM/Price/Form/Field.tpl,{$form.is_active.label}
templates/CRM/Price/Form/Field.tpl,{$form.is_active.html}
templates/CRM/Price/Form/LineItem.tpl,{$priceset+1}
templates/CRM/Price/Form/LineItem.tpl,{$part.$priceset.info}
templates/CRM/Price/Form/LineItem.tpl,{$line.field_title}
templates/CRM/Price/Form/LineItem.tpl,{$line.label}
templates/CRM/Price/Form/LineItem.tpl,{$line.label}
templates/CRM/Price/Form/LineItem.tpl,{$line.description}
templates/CRM/Price/Form/LineItem.tpl,{$line.qty}
templates/CRM/Price/Form/LineItem.tpl,{$line.unit_price|crmMoney}
templates/CRM/Price/Form/LineItem.tpl,{$line.line_total|crmMoney}
templates/CRM/Price/Form/LineItem.tpl,{$line.participant_count}
templates/CRM/Price/Form/LineItem.tpl,{$pricefildTotal.LineItems[$line.price_field_value_id]|crmMoney}
templates/CRM/Price/Form/LineItem.tpl,{$fildTotal|crmMoney}
templates/CRM/Price/Form/LineItem.tpl,{$line.price_field_value_id}
templates/CRM/Price/Form/LineItem.tpl,{$line.price_field_value_id}
templates/CRM/Price/Form/LineItem.tpl,{$line.price_field_value_id}
templates/CRM/Price/Form/LineItem.tpl,{$line.price_field_value_id}
templates/CRM/Price/Form/LineItem.tpl,{$fildTotal}
templates/CRM/Price/Form/LineItem.tpl,{$totalAmount|crmMoney}
templates/CRM/Price/Form/LineItem.tpl,{$pricefildTotal.total|crmMoney}
templates/CRM/Price/Form/LineItem.tpl,{$total|crmMoney}
templates/CRM/Price/Form/LineItem.tpl,{$total}
templates/CRM/Price/Form/LineItem.tpl,{$total|crmMoney}
templates/CRM/Price/Form/LineItem.tpl,{$totalAmount|crmMoney}
templates/CRM/Price/Form/LineItem.tpl,{$totalcount}
templates/CRM/Price/Form/LineItem.tpl,{$hookDiscount.message}
templates/CRM/Price/Form/Option.tpl,{$form.membership_type_id.label}
templates/CRM/Price/Form/Option.tpl,{$form.membership_type_id.html}
templates/CRM/Price/Form/Option.tpl,{$form.membership_num_terms.label}
templates/CRM/Price/Form/Option.tpl,{$form.membership_num_terms.html}
templates/CRM/Price/Form/Option.tpl,{$form.label.label}
templates/CRM/Price/Form/Option.tpl,{$form.label.html}
templates/CRM/Price/Form/Option.tpl,{$form.amount.label}
templates/CRM/Price/Form/Option.tpl,{$form.amount.html}
templates/CRM/Price/Form/Option.tpl,{$form.non_deductible_amount.label}
templates/CRM/Price/Form/Option.tpl,{$form.non_deductible_amount.html}
templates/CRM/Price/Form/Option.tpl,{$form.description.label}
templates/CRM/Price/Form/Option.tpl,{$form.description.html}
templates/CRM/Price/Form/Option.tpl,{$form.help_pre.label}
templates/CRM/Price/Form/Option.tpl,{$form.help_pre.html}
templates/CRM/Price/Form/Option.tpl,{$form.help_post.label}
templates/CRM/Price/Form/Option.tpl,{$form.help_post.html}
templates/CRM/Price/Form/Option.tpl,{$form.financial_type_id.label}
templates/CRM/Price/Form/Option.tpl,{$form.financial_type_id.html}
templates/CRM/Price/Form/Option.tpl,{$form.count.label}
templates/CRM/Price/Form/Option.tpl,{$form.count.html}
templates/CRM/Price/Form/Option.tpl,{$form.max_value.label}
templates/CRM/Price/Form/Option.tpl,{$form.max_value.html}
templates/CRM/Price/Form/Option.tpl,{$form.weight.label}
templates/CRM/Price/Form/Option.tpl,{$form.weight.html}
templates/CRM/Price/Form/Option.tpl,{$form.is_active.label}
templates/CRM/Price/Form/Option.tpl,{$form.is_active.html}
templates/CRM/Price/Form/Option.tpl,{$form.is_default.label}
templates/CRM/Price/Form/Option.tpl,{$form.is_default.html}
templates/CRM/Price/Form/Option.tpl,{$form.visibility_id.label}
templates/CRM/Price/Form/Option.tpl,{$form.visibility_id.html}
templates/CRM/Price/Form/OptionFields.tpl,{$index}
templates/CRM/Price/Form/OptionFields.tpl,{$index}
templates/CRM/Price/Form/OptionFields.tpl,{$index}
templates/CRM/Price/Form/OptionFields.tpl,{$index}
templates/CRM/Price/Form/OptionFields.tpl,{$form.default_option[$index].html}
templates/CRM/Price/Form/OptionFields.tpl,{$index}
templates/CRM/Price/Form/OptionFields.tpl,{$form.default_checkbox_option.$index.html}
templates/CRM/Price/Form/OptionFields.tpl,{$form.membership_type_id.$index.html}
templates/CRM/Price/Form/OptionFields.tpl,{$form.membership_num_terms.$index.html}
templates/CRM/Price/Form/OptionFields.tpl,{$form.option_label.$index.html}
templates/CRM/Price/Form/OptionFields.tpl,{$form.option_amount.$index.html}
templates/CRM/Price/Form/OptionFields.tpl,{$form.option_financial_type_id.$index.html}
templates/CRM/Price/Form/OptionFields.tpl,{$form.option_count.$index.html}
templates/CRM/Price/Form/OptionFields.tpl,{$form.option_max_value.$index.html}
templates/CRM/Price/Form/OptionFields.tpl,{$form.option_weight.$index.html}
templates/CRM/Price/Form/OptionFields.tpl,{$form.option_visibility_id.$index.html}
templates/CRM/Price/Form/OptionFields.tpl,{$form.option_status.$index.html}
templates/CRM/Price/Form/OptionFields.tpl,{$showBlocks}
templates/CRM/Price/Form/OptionFields.tpl,{$hideBlocks}
templates/CRM/Price/Form/Preview.tpl,{$setTitle}
templates/CRM/Price/Form/PriceSet.tpl,{$priceSet.help_pre}
templates/CRM/Price/Form/PriceSet.tpl,{$element.help_pre}
templates/CRM/Price/Form/PriceSet.tpl,{$element.name}
templates/CRM/Price/Form/PriceSet.tpl,{$form.$element_name.label}
templates/CRM/Price/Form/PriceSet.tpl,{$element.name}
templates/CRM/Price/Form/PriceSet.tpl,{$element.name}
templates/CRM/Price/Form/PriceSet.tpl,{$rowCount}
templates/CRM/Price/Form/PriceSet.tpl,{$form.$element_name.$key.html}
templates/CRM/Price/Form/PriceSet.tpl,{$element.help_post}
templates/CRM/Price/Form/PriceSet.tpl,{$form.$element_name.label}
templates/CRM/Price/Form/PriceSet.tpl,{$element.name}
templates/CRM/Price/Form/PriceSet.tpl,{$form.$element_name.html}
templates/CRM/Price/Form/PriceSet.tpl,{$amount|crmMoney}
templates/CRM/Price/Form/PriceSet.tpl,{$amount|crmMoney}
templates/CRM/Price/Form/PriceSet.tpl,{$option.amount|crmMoney}
templates/CRM/Price/Form/PriceSet.tpl,{$option.tax_amount|crmMoney}
templates/CRM/Price/Form/PriceSet.tpl,{$taxTerm}
templates/CRM/Price/Form/PriceSet.tpl,{$option.amount|crmMoney}
templates/CRM/Price/Form/PriceSet.tpl,{$fieldHandle}
templates/CRM/Price/Form/PriceSet.tpl,{$form.$fieldHandle.frozen}
templates/CRM/Price/Form/PriceSet.tpl,{$element.help_post}
templates/CRM/Price/Form/PriceSet.tpl,{$form.auto_renew.html}
templates/CRM/Price/Form/PriceSet.tpl,{$form.auto_renew.label}
templates/CRM/Price/Form/PriceSet.tpl,{$priceSet.help_post}
templates/CRM/Price/Form/Set.tpl,{$form.title.label}
templates/CRM/Price/Form/Set.tpl,{$form.title.html}
templates/CRM/Price/Form/Set.tpl,{$form.extends.label}
templates/CRM/Price/Form/Set.tpl,{$form.extends.html}
templates/CRM/Price/Form/Set.tpl,{$form.min_amount.label}
templates/CRM/Price/Form/Set.tpl,{$form.min_amount.html}
templates/CRM/Price/Form/Set.tpl,{$form.financial_type_id.label}
templates/CRM/Price/Form/Set.tpl,{$form.financial_type_id.html}
templates/CRM/Price/Form/Set.tpl,{$form.help_pre.label}
templates/CRM/Price/Form/Set.tpl,{$form.help_pre.html}
templates/CRM/Price/Form/Set.tpl,{$form.help_post.label}
templates/CRM/Price/Form/Set.tpl,{$form.help_post.html}
templates/CRM/Price/Form/Set.tpl,{$form.is_active.label}
templates/CRM/Price/Form/Set.tpl,{$form.is_active.html}
templates/CRM/Price/Page/Field.tpl,{$row.id}
templates/CRM/Price/Page/Field.tpl,{$row.class}
templates/CRM/Price/Page/Field.tpl,{$row.label}
templates/CRM/Price/Page/Field.tpl,{$row.html_type_display}
templates/CRM/Price/Page/Field.tpl,{$row.weight}
templates/CRM/Price/Page/Field.tpl,{$row.id}
templates/CRM/Price/Page/Field.tpl,{$row.active_on|crmDate}
templates/CRM/Price/Page/Field.tpl,{$row.expire_on|crmDate}
templates/CRM/Price/Page/Field.tpl,{$row.price|crmMoney}
templates/CRM/Price/Page/Field.tpl,{$taxTerm}
templates/CRM/Price/Page/Field.tpl,"{$row.tax_rate|string_format:""%.2f""}"
templates/CRM/Price/Page/Field.tpl,{$row.tax_amount|crmMoney}
templates/CRM/Price/Page/Field.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Price/Page/LineItem.tpl,{$priceset+1}
templates/CRM/Price/Page/LineItem.tpl,{$part.$priceset.info}
templates/CRM/Price/Page/LineItem.tpl,{$line.field_title}
templates/CRM/Price/Page/LineItem.tpl,{$line.label}
templates/CRM/Price/Page/LineItem.tpl,{$line.label}
templates/CRM/Price/Page/LineItem.tpl,{$line.description}
templates/CRM/Price/Page/LineItem.tpl,{$line.financial_type}
templates/CRM/Price/Page/LineItem.tpl,{$line.qty}
templates/CRM/Price/Page/LineItem.tpl,{$line.unit_price|crmMoney:$currency}
templates/CRM/Price/Page/LineItem.tpl,{$line.line_total|crmMoney:$currency}
templates/CRM/Price/Page/LineItem.tpl,{$line.line_total|crmMoney:$currency}
templates/CRM/Price/Page/LineItem.tpl,{$line.line_total|crmMoney:$currency}
templates/CRM/Price/Page/LineItem.tpl,{$taxTerm}
templates/CRM/Price/Page/LineItem.tpl,{$line.tax_rate}
templates/CRM/Price/Page/LineItem.tpl,{$line.tax_amount|crmMoney:$currency}
templates/CRM/Price/Page/LineItem.tpl,{$line.line_total+$line.tax_amount|crmMoney:$currency}
templates/CRM/Price/Page/LineItem.tpl,{$line.participant_count}
templates/CRM/Price/Page/LineItem.tpl,{$totalTaxAmount|crmMoney:$currency}
templates/CRM/Price/Page/LineItem.tpl,{$totalAmount-$totalTaxAmount|crmMoney:$currency}
templates/CRM/Price/Page/LineItem.tpl,{$totalAmount|crmMoney:$currency}
templates/CRM/Price/Page/LineItem.tpl,{$totalcount}
templates/CRM/Price/Page/LineItem.tpl,{$hookDiscount.message}
templates/CRM/Price/Page/LineItem.tpl,{$config->monetaryThousandSeparator}
templates/CRM/Price/Page/LineItem.tpl,{$config->monetaryDecimalPoint}
templates/CRM/Price/Page/LineItem.tpl,{$config->moneyformat}
templates/CRM/Price/Page/LineItem.tpl,{$currency}
templates/CRM/Price/Page/LineItem.tpl,{$currencySymbol}
templates/CRM/Price/Page/Option.tpl,{$row.id}
templates/CRM/Price/Page/Option.tpl,{$row.class}
templates/CRM/Price/Page/Option.tpl,{$row.label}
templates/CRM/Price/Page/Option.tpl,{$row.amount|crmMoney}
templates/CRM/Price/Page/Option.tpl,{$row.non_deductible_amount|crmMoney}
templates/CRM/Price/Page/Option.tpl,{$row.help_pre}
templates/CRM/Price/Page/Option.tpl,{$row.help_post}
templates/CRM/Price/Page/Option.tpl,{$row.count}
templates/CRM/Price/Page/Option.tpl,{$row.max_value}
templates/CRM/Price/Page/Option.tpl,{$config->resourceBase}
templates/CRM/Price/Page/Option.tpl,{$row.financial_type_id}
templates/CRM/Price/Page/Option.tpl,{$row.weight}
templates/CRM/Price/Page/Option.tpl,{$taxTerm}
templates/CRM/Price/Page/Option.tpl,{$row.tax_rate}
templates/CRM/Price/Page/Option.tpl,{$row.tax_amount|crmMoney}
templates/CRM/Price/Page/Option.tpl,{$row.id}
templates/CRM/Price/Page/Option.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Price/Page/Option.tpl,{$config->resourceBase}
templates/CRM/Price/Page/Set.tpl,{$row.id}
templates/CRM/Price/Page/Set.tpl,{$row.id}
templates/CRM/Price/Page/Set.tpl,{$row.class}
templates/CRM/Price/Page/Set.tpl,{$row.title}
templates/CRM/Price/Page/Set.tpl,{$row.extends}
templates/CRM/Price/Page/Set.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Price/Page/table.tpl,{$event.title}
templates/CRM/Price/Page/table.tpl,{$event.eventType}
templates/CRM/Price/Page/table.tpl,{$event.startDate|crmDate}
templates/CRM/Price/Page/table.tpl,{$event.endDate|crmDate}
templates/CRM/Price/Page/table.tpl,{$contributionPage.title}
templates/CRM/Price/Page/table.tpl,{$contributionPage.type}
templates/CRM/Price/Page/table.tpl,{$contributionPage.startDate|truncate:10:''|crmDate}
templates/CRM/Price/Page/table.tpl,{$contributionPage.endDate|truncate:10:''|crmDate}
templates/CRM/Price/Page/table.tpl,{$eventTemplate.title}
templates/CRM/Price/Page/table.tpl,{$eventTemplate.eventType}
templates/CRM/Profile/Form/Dynamic.tpl,{$ufGroupName}
templates/CRM/Profile/Form/Dynamic.tpl,{$form._qf_Edit_upload_delete.html}
templates/CRM/Profile/Form/Dynamic.tpl,{$cancelURL}
templates/CRM/Profile/Form/Dynamic.tpl,{$cancelButtonText}
templates/CRM/Profile/Form/Dynamic.tpl,"{$config->lcMessages|truncate:2:"""":true}"
templates/CRM/Profile/Form/Dynamic.tpl,"{$config->lcMessages|truncate:2:"""":true}"
templates/CRM/Profile/Form/Dynamic.tpl,{$form._qf_Edit_upload_duplicate.html}
templates/CRM/Profile/Form/Dynamic.tpl,{$help_pre}
templates/CRM/Profile/Form/Dynamic.tpl,{$form._qf_Edit_upload_duplicate.html}
templates/CRM/Profile/Form/Dynamic.tpl,{$field.group_id}
templates/CRM/Profile/Form/Dynamic.tpl,{$field.groupTitle}
templates/CRM/Profile/Form/Dynamic.tpl,{$field.groupHelpPre}
templates/CRM/Profile/Form/Dynamic.tpl,{$field.help_pre}
templates/CRM/Profile/Form/Dynamic.tpl,{$groupHelpPost}
templates/CRM/Profile/Form/Dynamic.tpl,{$n}
templates/CRM/Profile/Form/Dynamic.tpl,{$n}
templates/CRM/Profile/Form/Dynamic.tpl,{$field.help_pre}
templates/CRM/Profile/Form/Dynamic.tpl,{$n}
templates/CRM/Profile/Form/Dynamic.tpl,{$n}
templates/CRM/Profile/Form/Dynamic.tpl,{$form.$n.label}
templates/CRM/Profile/Form/Dynamic.tpl,{$form.$n.$key.html}
templates/CRM/Profile/Form/Dynamic.tpl,{$n}
templates/CRM/Profile/Form/Dynamic.tpl,{$n}
templates/CRM/Profile/Form/Dynamic.tpl,{$form.$n.label}
templates/CRM/Profile/Form/Dynamic.tpl,{$form.$provider.html}
templates/CRM/Profile/Form/Dynamic.tpl,{$form.$n.html}
templates/CRM/Profile/Form/Dynamic.tpl,{$form.$n.html}
templates/CRM/Profile/Form/Dynamic.tpl,{$form.$phone_ext_field.html}
templates/CRM/Profile/Form/Dynamic.tpl,{$form.$n.html}
templates/CRM/Profile/Form/Dynamic.tpl,{$n}
templates/CRM/Profile/Form/Dynamic.tpl,{$customFiles.$n.displayURL}
templates/CRM/Profile/Form/Dynamic.tpl,{$n}
templates/CRM/Profile/Form/Dynamic.tpl,{$customFiles.$n.deleteURL}
templates/CRM/Profile/Form/Dynamic.tpl,{$n}
templates/CRM/Profile/Form/Dynamic.tpl,{$n}
templates/CRM/Profile/Form/Dynamic.tpl,{$field.help_post}
templates/CRM/Profile/Form/Dynamic.tpl,{$field.groupHelpPost}
templates/CRM/Profile/Form/Dynamic.tpl,{$floatStyle}
templates/CRM/Profile/Form/Dynamic.tpl,{$form._qf_Edit_upload_duplicate.html}
templates/CRM/Profile/Form/Dynamic.tpl,{$cancelURL}
templates/CRM/Profile/Form/Dynamic.tpl,{$cancelButtonText}
templates/CRM/Profile/Form/Dynamic.tpl,{$help_post}
templates/CRM/Profile/Form/Dynamic.tpl,{$statusMessage}
templates/CRM/Profile/Form/GreetingType.tpl,{$form.$n.html|crmAddClass:big}
templates/CRM/Profile/Form/GreetingType.tpl,{$customGreeting}
templates/CRM/Profile/Form/GreetingType.tpl,{$form.$customGreeting.html|crmAddClass:big}
templates/CRM/Profile/Form/GreetingType.tpl,{$n|@json_encode}
templates/CRM/Profile/Form/Search.tpl,{$groupId}
templates/CRM/Profile/Form/Search.tpl,{$form.$from.label}
templates/CRM/Profile/Form/Search.tpl,{$form.$from.html}
templates/CRM/Profile/Form/Search.tpl,{$form.$to.label}
templates/CRM/Profile/Form/Search.tpl,{$form.$to.html}
templates/CRM/Profile/Form/Search.tpl,{$form.$n.label}
templates/CRM/Profile/Form/Search.tpl,{$form.$n.html}
templates/CRM/Profile/Form/Search.tpl,{$form.$n.html}
templates/CRM/Profile/Form/Search.tpl,{$form.$phone_ext_field.html}
templates/CRM/Profile/Form/Search.tpl,{$form.$n.html}
templates/CRM/Profile/Form/Search.tpl,{$n}
templates/CRM/Profile/Form/Search.tpl,{$form.$operator_name.html}
templates/CRM/Profile/Form/Search.tpl,{$statusMessage}
templates/CRM/Profile/Page/Dynamic.tpl,"{$config->lcMessages|truncate:2:"""":true}"
templates/CRM/Profile/Page/Dynamic.tpl,"{$config->lcMessages|truncate:2:"""":true}"
templates/CRM/Profile/Page/Dynamic.tpl,{$ufGroupName}
templates/CRM/Profile/Page/Dynamic.tpl,{$rowName}
templates/CRM/Profile/Page/Dynamic.tpl,{$rowName}
templates/CRM/Profile/Page/Dynamic.tpl,{$field.label}
templates/CRM/Profile/Page/Dynamic.tpl,{$field.value}
templates/CRM/Profile/Page/Listings.tpl,{$ufGroupName}
templates/CRM/Profile/Page/Listings.tpl,{$mapURL}
templates/CRM/Profile/Page/Listings.tpl,{$sort->_response.$key.link}
templates/CRM/Profile/Page/Listings.tpl,{$header.name}
templates/CRM/Profile/Page/Listings.tpl,{$smarty.foreach.listings.iteration}
templates/CRM/Profile/Page/Listings.tpl,{$columnHeaders.$index.field_name}
templates/CRM/Profile/Page/Listings.tpl,{$value}
templates/CRM/Profile/Page/Listings.tpl,{$value}
templates/CRM/Profile/Page/MultipleRecordFieldsListing.tpl,{$customGroupTitle}
templates/CRM/Profile/Page/MultipleRecordFieldsListing.tpl,{$customGroupId}
templates/CRM/Profile/Page/MultipleRecordFieldsListing.tpl,{$contactId}
templates/CRM/Profile/Page/MultipleRecordFieldsListing.tpl,{$customGroupId}
templates/CRM/Profile/Page/MultipleRecordFieldsListing.tpl,{$headerAttr.$recId.columnName}
templates/CRM/Profile/Page/MultipleRecordFieldsListing.tpl,{$headerAttr.$recId.dataType}
templates/CRM/Profile/Page/MultipleRecordFieldsListing.tpl,{$headerAttr.$recId.dataEmptyOption}
templates/CRM/Profile/Page/MultipleRecordFieldsListing.tpl,{$head}
templates/CRM/Profile/Page/MultipleRecordFieldsListing.tpl,{$customGroupId}
templates/CRM/Profile/Page/MultipleRecordFieldsListing.tpl,{$head}
templates/CRM/Profile/Page/MultipleRecordFieldsListing.tpl,{$rows.$hrecId}
templates/CRM/Profile/Page/MultipleRecordFieldsListing.tpl,{$rows.action}
templates/CRM/Profile/Page/MultipleRecordFieldsListing.tpl,{$fid}
templates/CRM/Profile/Page/MultipleRecordFieldsListing.tpl,{$rec.$recId}
templates/CRM/Profile/Page/MultipleRecordFieldsListing.tpl,{$dialogId}
templates/CRM/Profile/Page/MultipleRecordFieldsListing.tpl,{$dialogId}
templates/CRM/Profile/Page/Overlay.tpl,{$displayName}
templates/CRM/Profile/Page/Overlay.tpl,{$rowName}
templates/CRM/Profile/Page/Overlay.tpl,{$field.label}
templates/CRM/Profile/Page/Overlay.tpl,{$field.value}
templates/CRM/Profile/Page/View.tpl,{$group.content}
templates/CRM/Profile/Page/View.tpl,{$group.title}
templates/CRM/Profile/Page/View.tpl,{$groupID}
templates/CRM/Profile/Page/View.tpl,{$group.content}
templates/CRM/Profile/Page/View.tpl,{$listingURL}
templates/CRM/Profile/Page/View.tpl,{$mapURL}
templates/CRM/Queue/Page/Runner.tpl,{$queueRunnerData|@json}
templates/CRM/Report/Form/Actions.tpl,{$instanceUrl}
templates/CRM/Report/Form/Actions.tpl,{$form.charts.html|crmAddClass:big}
templates/CRM/Report/Form/Actions.tpl,{$form.$chart.html}
templates/CRM/Report/Form/Actions.tpl,{$form.groups.html}
templates/CRM/Report/Form/Actions.tpl,{$form.$group.html}
templates/CRM/Report/Form/Actions.tpl,{$chartType}
templates/CRM/Report/Form/Campaign/SurveyCoverSheet.tpl,{$value}
templates/CRM/Report/Form/Campaign/SurveyCoverSheet.tpl,{$label}
templates/CRM/Report/Form/Campaign/SurveyCoverSheet.tpl,{$value}
templates/CRM/Report/Form/Campaign/SurveyCoverSheet.tpl,{$label}
templates/CRM/Report/Form/Contact/Detail.tpl,{$l}
templates/CRM/Report/Form/Contact/Detail.tpl,{$column}
templates/CRM/Report/Form/Contact/Detail.tpl,{$column}
templates/CRM/Report/Form/Contact/Detail.tpl,{$r}
templates/CRM/Report/Form/Contact/Detail.tpl,{$l}
templates/CRM/Report/Form/Contact/Detail.tpl,{$r}
templates/CRM/Report/Form/Contact/Detail.tpl,{$l}
templates/CRM/Report/Form/Contact/Detail.tpl,{$column}
templates/CRM/Report/Form/Contact/Detail.tpl,{$r}
templates/CRM/Report/Form/Contact/Detail.tpl,{$l}
templates/CRM/Report/Form/Contact/Detail.tpl,{$column}
templates/CRM/Report/Form/Contact/Detail.tpl,{$r}
templates/CRM/Report/Form/Contact/Detail.tpl,{$l}
templates/CRM/Report/Form/Contact/Detail.tpl,{$column}
templates/CRM/Report/Form/Contact/Detail.tpl,{$r}
templates/CRM/Report/Form/Contact/Detail.tpl,{$l}
templates/CRM/Report/Form/Contact/Detail.tpl,{$column}
templates/CRM/Report/Form/Contact/Detail.tpl,{$r}
templates/CRM/Report/Form/Contact/Detail.tpl,{$l}
templates/CRM/Report/Form/Contact/Detail.tpl,{$r}
templates/CRM/Report/Form/Contact/Detail.tpl,{$l}
templates/CRM/Report/Form/Contact/Detail.tpl,{$column}
templates/CRM/Report/Form/Contact/Detail.tpl,{$r}
templates/CRM/Report/Form/Contact/Detail.tpl,{$l}
templates/CRM/Report/Form/Contact/Detail.tpl,{$r}
templates/CRM/Report/Form/Contact/Detail.tpl,{$columnCount}
templates/CRM/Report/Form/Contact/Detail.tpl,{$h}
templates/CRM/Report/Form/Contact/Detail.tpl,{$section.title}
templates/CRM/Report/Form/Contact/Detail.tpl,{$l}
templates/CRM/Report/Form/Contact/Detail.tpl,{$r}
templates/CRM/Report/Form/Contact/Detail.tpl,{$l}
templates/CRM/Report/Form/Contact/Detail.tpl,{$column}
templates/CRM/Report/Form/Contact/Detail.tpl,{$smarty.foreach.sections.index}
templates/CRM/Report/Form/Contact/Detail.tpl,{$r}
templates/CRM/Report/Form/Contact/Detail.tpl,{$h}
templates/CRM/Report/Form/Contact/Detail.tpl,{$l}
templates/CRM/Report/Form/Contact/Detail.tpl,{$r}
templates/CRM/Report/Form/Contact/Detail.tpl,{$l}
templates/CRM/Report/Form/Contact/Detail.tpl,{$r}
templates/CRM/Report/Form/Contact/Detail.tpl,{$header.colspan}
templates/CRM/Report/Form/Contact/Detail.tpl,{$header.title}
templates/CRM/Report/Form/Contact/Detail.tpl,{$header.title}
templates/CRM/Report/Form/Contact/Detail.tpl,{$field}
templates/CRM/Report/Form/Contact/Detail.tpl,{$row.$fieldHover|escape}
templates/CRM/Report/Form/Contact/Detail.tpl,{$row.$fieldLink}
templates/CRM/Report/Form/Contact/Detail.tpl,{$row.$field}
templates/CRM/Report/Form/Contact/Detail.tpl,{$row.$field|crmDate:$config->dateformatPartial}
templates/CRM/Report/Form/Contact/Detail.tpl,{$row.$field|crmDate:$config->dateformatYear}
templates/CRM/Report/Form/Contact/Detail.tpl,{$row.$field|truncate:10:''|crmDate}
templates/CRM/Report/Form/Contact/Detail.tpl,{$row.$field|crmMoney}
templates/CRM/Report/Form/Contact/Detail.tpl,{$row.$field}
templates/CRM/Report/Form/Contact/Detail.tpl,{$component|replace:'_civireport':''|upper}
templates/CRM/Report/Form/Contact/Detail.tpl,{$component}
templates/CRM/Report/Form/Contact/Detail.tpl,{$header.title}
templates/CRM/Report/Form/Contact/Detail.tpl,{$rowid}
templates/CRM/Report/Form/Contact/Detail.tpl,{$field}
templates/CRM/Report/Form/Contact/Detail.tpl,{$row.$fieldHover|escape}
templates/CRM/Report/Form/Contact/Detail.tpl,{$row.$fieldLink}
templates/CRM/Report/Form/Contact/Detail.tpl,{$row.$field}
templates/CRM/Report/Form/Contact/Detail.tpl,{$row.$field|crmDate:$config->dateformatPartial}
templates/CRM/Report/Form/Contact/Detail.tpl,{$row.$field|crmDate:$config->dateformatYear}
templates/CRM/Report/Form/Contact/Detail.tpl,{$row.$field|truncate:10:''|crmDate}
templates/CRM/Report/Form/Contact/Detail.tpl,{$row.$field|crmMoney}
templates/CRM/Report/Form/Contact/Detail.tpl,{$row.$field}
templates/CRM/Report/Form/Contact/Detail.tpl,{$grandStat.$field|crmMoney}
templates/CRM/Report/Form/Contact/Detail.tpl,{$grandStat.$field}
templates/CRM/Report/Form/Contribute/DeferredRevenue.tpl,{$row.label}
templates/CRM/Report/Form/Contribute/DeferredRevenue.tpl,{$label.title}
templates/CRM/Report/Form/Contribute/DeferredRevenue.tpl,{$innerRow.$header}
templates/CRM/Report/Form/Criteria.tpl,{$fieldOp}
templates/CRM/Report/Form/Criteria.tpl,{$fieldName}
templates/CRM/Report/Form/Event/Income.tpl,{$keys}
templates/CRM/Report/Form/Event/Income.tpl,{$values}
templates/CRM/Report/Form/Event/Income.tpl,{$eventID}
templates/CRM/Report/Form/Event/Income.tpl,{$keys}
templates/CRM/Report/Form/Event/Income.tpl,{$keys}
templates/CRM/Report/Form/Event/Income.tpl,{$values}
templates/CRM/Report/Form/Event/Income.tpl,{$keys}
templates/CRM/Report/Form/Event/Income.tpl,{$role}
templates/CRM/Report/Form/Event/Income.tpl,{$eventID}
templates/CRM/Report/Form/Event/Income.tpl,{$keys}
templates/CRM/Report/Form/Event/Income.tpl,{$role}
templates/CRM/Report/Form/Event/Income.tpl,{$keys}
templates/CRM/Report/Form/Event/Income.tpl,{$role}
templates/CRM/Report/Form/Event/Income.tpl,{$keys}
templates/CRM/Report/Form/Event/Income.tpl,{$row.total}
templates/CRM/Report/Form/Event/Income.tpl,{$keys}
templates/CRM/Report/Form/Event/Income.tpl,{$row.round}
templates/CRM/Report/Form/Event/Income.tpl,{$keys}
templates/CRM/Report/Form/Event/Income.tpl,{$row.amount}
templates/CRM/Report/Form/Fields.tpl,{$tab.title|escape}
templates/CRM/Report/Form/Fields.tpl,{$tab.div_label}
templates/CRM/Report/Form/Fields.tpl,{$tab.title}
templates/CRM/Report/Form/Fields.tpl,{$form.buttons.html}
templates/CRM/Report/Form/Grant/Statistics.tpl,{$reportTitle}
templates/CRM/Report/Form/Grant/Statistics.tpl,{$reportDate}
templates/CRM/Report/Form/Grant/Statistics.tpl,{$row.title}
templates/CRM/Report/Form/Grant/Statistics.tpl,{$row.value}
templates/CRM/Report/Form/Grant/Statistics.tpl,{$val.title}
templates/CRM/Report/Form/Grant/Statistics.tpl,{$val.count}
templates/CRM/Report/Form/Grant/Statistics.tpl,{$val.amount|crmMoney}
templates/CRM/Report/Form/Grant/Statistics.tpl,{$values.title}
templates/CRM/Report/Form/Grant/Statistics.tpl,{$field}
templates/CRM/Report/Form/Grant/Statistics.tpl,{$row.count}
templates/CRM/Report/Form/Grant/Statistics.tpl,{$row.percentage}
templates/CRM/Report/Form/Grant/Statistics.tpl,{$val.value|crmMoney:$fld}
templates/CRM/Report/Form/Grant/Statistics.tpl,{$val.percentage}
templates/CRM/Report/Form/Grant/Statistics.tpl,{$field}
templates/CRM/Report/Form/Grant/Statistics.tpl,{$row.unassigned_count}
templates/CRM/Report/Form/Grant/Statistics.tpl,{$row.unassigned_percentage}
templates/CRM/Report/Form/Grant/Statistics.tpl,{$val.value|crmMoney:$fld}
templates/CRM/Report/Form/Grant/Statistics.tpl,{$val.percentage}
templates/CRM/Report/Form/Layout/Graph.tpl,{$uploadURL|cat:$chartId}
templates/CRM/Report/Form/Layout/Graph.tpl,{$uniqueId}
templates/CRM/Report/Form/Layout/Graph.tpl,{$chartData}
templates/CRM/Report/Form/Layout/Graph.tpl,{$uniqueId}
templates/CRM/Report/Form/Layout/Graph.tpl,{$chartId}
templates/CRM/Report/Form/Layout/Graph.tpl,{$uniqueId}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$header.colspan}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$header.title}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$header.title}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$tableHeader}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$l}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$column}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$column}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$r}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$l}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$r}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$l}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$column}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$r}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$l}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$column}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$r}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$l}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$column}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$r}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$l}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$column}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$r}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$l}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$r}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$l}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$column}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$r}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$l}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$r}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$columnCount}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$h}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$section.title}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$l}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$r}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$l}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$column}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$smarty.foreach.sections.index}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$r}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$h}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$l}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$r}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$l}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$r}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$row.class}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$rowid}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$field}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$row.$fieldHover|escape}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$row.$fieldLink}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$row.$fieldClass}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$row.$field}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$row.$field|crmDate:$config->dateformatPartial}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$row.$field|crmDate:$config->dateformatYear}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$row.$field|truncate:10:''|crmDate}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$row.$field|crmDate}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$row.$field|crmMoney}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$row.$field}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$grandStat.$field|crmMoney}
templates/CRM/Report/Form/Layout/Overlay.tpl,{$grandStat.$field}
templates/CRM/Report/Form/Layout/Table.tpl,{$header.colspan}
templates/CRM/Report/Form/Layout/Table.tpl,{$header.title|escape}
templates/CRM/Report/Form/Layout/Table.tpl,{$class}
templates/CRM/Report/Form/Layout/Table.tpl,{$header.title|escape}
templates/CRM/Report/Form/Layout/Table.tpl,{$tableHeader}
templates/CRM/Report/Form/Layout/Table.tpl,{$l}
templates/CRM/Report/Form/Layout/Table.tpl,{$column}
templates/CRM/Report/Form/Layout/Table.tpl,{$column}
templates/CRM/Report/Form/Layout/Table.tpl,{$r}
templates/CRM/Report/Form/Layout/Table.tpl,{$l}
templates/CRM/Report/Form/Layout/Table.tpl,{$r}
templates/CRM/Report/Form/Layout/Table.tpl,{$l}
templates/CRM/Report/Form/Layout/Table.tpl,{$column}
templates/CRM/Report/Form/Layout/Table.tpl,{$r}
templates/CRM/Report/Form/Layout/Table.tpl,{$l}
templates/CRM/Report/Form/Layout/Table.tpl,{$column}
templates/CRM/Report/Form/Layout/Table.tpl,{$r}
templates/CRM/Report/Form/Layout/Table.tpl,{$l}
templates/CRM/Report/Form/Layout/Table.tpl,{$column}
templates/CRM/Report/Form/Layout/Table.tpl,{$r}
templates/CRM/Report/Form/Layout/Table.tpl,{$l}
templates/CRM/Report/Form/Layout/Table.tpl,{$column}
templates/CRM/Report/Form/Layout/Table.tpl,{$r}
templates/CRM/Report/Form/Layout/Table.tpl,{$l}
templates/CRM/Report/Form/Layout/Table.tpl,{$r}
templates/CRM/Report/Form/Layout/Table.tpl,{$l}
templates/CRM/Report/Form/Layout/Table.tpl,{$column}
templates/CRM/Report/Form/Layout/Table.tpl,{$r}
templates/CRM/Report/Form/Layout/Table.tpl,{$l}
templates/CRM/Report/Form/Layout/Table.tpl,{$r}
templates/CRM/Report/Form/Layout/Table.tpl,{$l}
templates/CRM/Report/Form/Layout/Table.tpl,{$r}
templates/CRM/Report/Form/Layout/Table.tpl,{$l}
templates/CRM/Report/Form/Layout/Table.tpl,{$h}
templates/CRM/Report/Form/Layout/Table.tpl,{$r}
templates/CRM/Report/Form/Layout/Table.tpl,{$l}
templates/CRM/Report/Form/Layout/Table.tpl,{$r}
templates/CRM/Report/Form/Layout/Table.tpl,{$l}
templates/CRM/Report/Form/Layout/Table.tpl,{$h}
templates/CRM/Report/Form/Layout/Table.tpl,{$r}
templates/CRM/Report/Form/Layout/Table.tpl,{$l}
templates/CRM/Report/Form/Layout/Table.tpl,{$r}
templates/CRM/Report/Form/Layout/Table.tpl,{$h}
templates/CRM/Report/Form/Layout/Table.tpl,{$columnCount}
templates/CRM/Report/Form/Layout/Table.tpl,{$h}
templates/CRM/Report/Form/Layout/Table.tpl,{$section.title|escape}
templates/CRM/Report/Form/Layout/Table.tpl,{$l}
templates/CRM/Report/Form/Layout/Table.tpl,{$r}
templates/CRM/Report/Form/Layout/Table.tpl,{$l}
templates/CRM/Report/Form/Layout/Table.tpl,{$column}
templates/CRM/Report/Form/Layout/Table.tpl,{$smarty.foreach.sections.index}
templates/CRM/Report/Form/Layout/Table.tpl,{$r}
templates/CRM/Report/Form/Layout/Table.tpl,{$h}
templates/CRM/Report/Form/Layout/Table.tpl,{$l}
templates/CRM/Report/Form/Layout/Table.tpl,{$r}
templates/CRM/Report/Form/Layout/Table.tpl,{$l}
templates/CRM/Report/Form/Layout/Table.tpl,{$r}
templates/CRM/Report/Form/Layout/Table.tpl,{$row.class}
templates/CRM/Report/Form/Layout/Table.tpl,{$rowid}
templates/CRM/Report/Form/Layout/Table.tpl,{$field}
templates/CRM/Report/Form/Layout/Table.tpl,{$row.$fieldHover|escape}
templates/CRM/Report/Form/Layout/Table.tpl,{$row.$fieldLink}
templates/CRM/Report/Form/Layout/Table.tpl,{$row.$fieldClass}
templates/CRM/Report/Form/Layout/Table.tpl,{$row.$field}
templates/CRM/Report/Form/Layout/Table.tpl,{$row.$field|crmDate:$config->dateformatPartial}
templates/CRM/Report/Form/Layout/Table.tpl,{$row.$field|crmDate:$config->dateformatYear}
templates/CRM/Report/Form/Layout/Table.tpl,{$row.$field|truncate:10:''|crmDate}
templates/CRM/Report/Form/Layout/Table.tpl,{$row.$field|crmDate}
templates/CRM/Report/Form/Layout/Table.tpl,{$row.$field|crmMoney:$row.$currencyColumn}
templates/CRM/Report/Form/Layout/Table.tpl,{$row.$field|crmMoney}
templates/CRM/Report/Form/Layout/Table.tpl,{$row.$field}
templates/CRM/Report/Form/Layout/Table.tpl,{$grandStat.$field|crmMoney}
templates/CRM/Report/Form/Layout/Table.tpl,{$grandStat.$field}
templates/CRM/Report/Form/Register.tpl,{$form.label.label}
templates/CRM/Report/Form/Register.tpl,{$form.label.html}
templates/CRM/Report/Form/Register.tpl,{$form.description.label}
templates/CRM/Report/Form/Register.tpl,{$form.description.html}
templates/CRM/Report/Form/Register.tpl,{$form.value.label}
templates/CRM/Report/Form/Register.tpl,{$form.value.html}
templates/CRM/Report/Form/Register.tpl,{$form.name.label}
templates/CRM/Report/Form/Register.tpl,{$form.name.html}
templates/CRM/Report/Form/Register.tpl,{$form.weight.label}
templates/CRM/Report/Form/Register.tpl,{$form.weight.html}
templates/CRM/Report/Form/Register.tpl,{$form.component_id.label}
templates/CRM/Report/Form/Register.tpl,{$form.component_id.html}
templates/CRM/Report/Form/Register.tpl,{$form.is_active.label}
templates/CRM/Report/Form/Register.tpl,{$form.is_active.html}
templates/CRM/Report/Form/Statistics.tpl,{$reportTitle}
templates/CRM/Report/Form/Statistics.tpl,{$reportDate}
templates/CRM/Report/Form/Statistics.tpl,{$row.title}
templates/CRM/Report/Form/Statistics.tpl,{$row.value|escape}
templates/CRM/Report/Form/Statistics.tpl,{$row.title}
templates/CRM/Report/Form/Statistics.tpl,{$row.value|escape}
templates/CRM/Report/Form/Statistics.tpl,{$row.title}
templates/CRM/Report/Form/Statistics.tpl,{$row.value|crmMoney|escape}
templates/CRM/Report/Form/Statistics.tpl,{$row.value|escape}
templates/CRM/Report/Form/Statistics.tpl,{$row.value|crmNumberFormat|escape}
templates/CRM/Report/Form/Tabs/Developer.tpl,{$report_class|escape}
templates/CRM/Report/Form/Tabs/Developer.tpl,{$sqlMode|escape}
templates/CRM/Report/Form/Tabs/Developer.tpl,{$sql|purify}
templates/CRM/Report/Form/Tabs/FieldSelection.tpl,{$grpFields.group_title}
templates/CRM/Report/Form/Tabs/FieldSelection.tpl,{$dnc}
templates/CRM/Report/Form/Tabs/FieldSelection.tpl,{$form.fields.$field.html}
templates/CRM/Report/Form/Tabs/FieldSelection.tpl,{$dnc}
templates/CRM/Report/Form/Tabs/Filters.tpl,{$filterGroups.$tableName.group_title}
templates/CRM/Report/Form/Tabs/Filters.tpl,{$tableName}
templates/CRM/Report/Form/Tabs/Filters.tpl,{$field.title}
templates/CRM/Report/Form/Tabs/Filters.tpl,{$tableName}
templates/CRM/Report/Form/Tabs/Filters.tpl,{$field.title}
templates/CRM/Report/Form/Tabs/Filters.tpl,{$form.$fieldOp.html}
templates/CRM/Report/Form/Tabs/Filters.tpl,{$filterVal}
templates/CRM/Report/Form/Tabs/Filters.tpl,{$form.$filterVal.label}
templates/CRM/Report/Form/Tabs/Filters.tpl,{$form.$filterVal.html}
templates/CRM/Report/Form/Tabs/Filters.tpl,{$filterMin}
templates/CRM/Report/Form/Tabs/Filters.tpl,{$form.$filterMin.label}
templates/CRM/Report/Form/Tabs/Filters.tpl,{$form.$filterMin.html}
templates/CRM/Report/Form/Tabs/Filters.tpl,{$form.$filterMax.label}
templates/CRM/Report/Form/Tabs/Filters.tpl,{$form.$filterMax.html}
templates/CRM/Report/Form/Tabs/GroupBy.tpl,{$form.group_bys[$gbElem].html}
templates/CRM/Report/Form/Tabs/GroupBy.tpl,{$form.group_bys_freq[$gbElem].label}
templates/CRM/Report/Form/Tabs/GroupBy.tpl,{$form.group_bys_freq[$gbElem].html}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.title.label}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.title.html}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.description.label}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.description.html}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.report_header.label}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.report_header.html}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.report_footer.label}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.report_footer.html}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.email_subject.label}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.email_subject.html|crmAddClass:huge}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.email_to.label}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.email_to.html|crmAddClass:huge}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.email_cc.label}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.email_cc.html|crmAddClass:huge}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.is_navigation.label}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.is_navigation.html}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.view_mode.html}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.parent_id.label}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.parent_id.html|crmAddClass:huge}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.drilldown_id.label}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.drilldown_id.html}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.permission.label}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.permission.html|crmAddClass:huge}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.grouprole.label}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.grouprole.html|crmAddClass:huge}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.add_to_my_reports.label}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.add_to_my_reports.html}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.is_reserved.label}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.is_reserved.html}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.addToDashboard.label}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.addToDashboard.html}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.row_count.label}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.row_count.html}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.cache_minutes.label}
templates/CRM/Report/Form/Tabs/Instance.tpl,{$form.cache_minutes.html}
templates/CRM/Report/Form/Tabs/OrderBy.tpl,{$index}
templates/CRM/Report/Form/Tabs/OrderBy.tpl,{$index}
templates/CRM/Report/Form/Tabs/OrderBy.tpl,{$index}
templates/CRM/Report/Form/Tabs/OrderBy.tpl,{$config->resourceBase}
templates/CRM/Report/Form/Tabs/OrderBy.tpl,{$form.order_bys.$index.column.html}
templates/CRM/Report/Form/Tabs/OrderBy.tpl,{$form.order_bys.$index.order.html}
templates/CRM/Report/Form/Tabs/OrderBy.tpl,{$form.order_bys.$index.section.html}
templates/CRM/Report/Form/Tabs/OrderBy.tpl,{$form.order_bys.$index.pageBreak.html}
templates/CRM/Report/Form/Tabs/OrderBy.tpl,{$config->resourceBase}
templates/CRM/Report/Form/Tabs/OrderBy.tpl,{$showBlocks}
templates/CRM/Report/Form/Tabs/OrderBy.tpl,{$hideBlocks}
templates/CRM/Report/Form/Tabs/ReportOptions.tpl,{$form.$optionName.label}
templates/CRM/Report/Form/Tabs/ReportOptions.tpl,{$form.$optionName.html}
templates/CRM/Report/Page/InstanceList.tpl,{$templateUrl}
templates/CRM/Report/Page/InstanceList.tpl,{$newButton}
templates/CRM/Report/Page/InstanceList.tpl,{$reportUrl}
templates/CRM/Report/Page/InstanceList.tpl,{$report}
templates/CRM/Report/Page/InstanceList.tpl,{$title}
templates/CRM/Report/Page/InstanceList.tpl,{$report}
templates/CRM/Report/Page/InstanceList.tpl,{$report}
templates/CRM/Report/Page/InstanceList.tpl,{$row.url}
templates/CRM/Report/Page/InstanceList.tpl,{$row.title}
templates/CRM/Report/Page/InstanceList.tpl,{$row.description}
templates/CRM/Report/Page/InstanceList.tpl,{$row.viewUrl}
templates/CRM/Report/Page/InstanceList.tpl,{$action.url}
templates/CRM/Report/Page/InstanceList.tpl,{$action_name}
templates/CRM/Report/Page/InstanceList.tpl,{$action.confirm_message|json_encode|htmlspecialchars}
templates/CRM/Report/Page/InstanceList.tpl,{$action.label|escape}
templates/CRM/Report/Page/InstanceList.tpl,{$action.label}
templates/CRM/Report/Page/InstanceList.tpl,{$templateUrl}
templates/CRM/Report/Page/InstanceList.tpl,{$newButton}
templates/CRM/Report/Page/InstanceList.tpl,{$reportUrl}
templates/CRM/Report/Page/Options.tpl,{$newReport}
templates/CRM/Report/Page/Options.tpl,{$row.id}
templates/CRM/Report/Page/Options.tpl,{$row.class}
templates/CRM/Report/Page/Options.tpl,{$row.label}
templates/CRM/Report/Page/Options.tpl,{$row.value}
templates/CRM/Report/Page/Options.tpl,{$row.description}
templates/CRM/Report/Page/Options.tpl,{$row.weight}
templates/CRM/Report/Page/Options.tpl,{$row.default_value}
templates/CRM/Report/Page/Options.tpl,{$row.component_name}
templates/CRM/Report/Page/Options.tpl,{$row.action}
templates/CRM/Report/Page/Options.tpl,{$newReport}
templates/CRM/Report/Page/Options.tpl,{$config->resourceBase}
templates/CRM/Report/Page/TemplateList.tpl,{$report}
templates/CRM/Report/Page/TemplateList.tpl,{$report}
templates/CRM/Report/Page/TemplateList.tpl,{$report}
templates/CRM/Report/Page/TemplateList.tpl,{$row.url}
templates/CRM/Report/Page/TemplateList.tpl,{$row.title}
templates/CRM/Report/Page/TemplateList.tpl,{$row.instanceUrl}
templates/CRM/Report/Page/TemplateList.tpl,{$row.description}
templates/CRM/SMS/Form/Group.tpl,{$form.name.label}
templates/CRM/SMS/Form/Group.tpl,{$form.name.html}
templates/CRM/SMS/Form/Group.tpl,{$form.sms_provider_id.label}
templates/CRM/SMS/Form/Group.tpl,{$form.sms_provider_id.html}
templates/CRM/SMS/Form/Group.tpl,{$form.includeGroups.label}
templates/CRM/SMS/Form/Group.tpl,{$form.includeGroups.html}
templates/CRM/SMS/Form/Group.tpl,{$form.excludeGroups.label}
templates/CRM/SMS/Form/Group.tpl,{$form.excludeGroups.html}
templates/CRM/SMS/Form/Group.tpl,{$form.includeMailings.label}
templates/CRM/SMS/Form/Group.tpl,{$form.includeMailings.html}
templates/CRM/SMS/Form/Group.tpl,{$form.excludeMailings.label}
templates/CRM/SMS/Form/Group.tpl,{$form.excludeMailings.html}
templates/CRM/SMS/Form/Provider.tpl,{$form.name.label}
templates/CRM/SMS/Form/Provider.tpl,{$form.name.html}
templates/CRM/SMS/Form/Provider.tpl,{$form.title.label}
templates/CRM/SMS/Form/Provider.tpl,{$form.title.html}
templates/CRM/SMS/Form/Provider.tpl,{$form.username.label}
templates/CRM/SMS/Form/Provider.tpl,{$form.username.html}
templates/CRM/SMS/Form/Provider.tpl,{$form.password.label}
templates/CRM/SMS/Form/Provider.tpl,{$form.password.html}
templates/CRM/SMS/Form/Provider.tpl,{$form.api_type.label}
templates/CRM/SMS/Form/Provider.tpl,{$form.api_type.html}
templates/CRM/SMS/Form/Provider.tpl,{$form.api_url.label}
templates/CRM/SMS/Form/Provider.tpl,{$form.api_url.html}
templates/CRM/SMS/Form/Provider.tpl,{$form.api_params.label}
templates/CRM/SMS/Form/Provider.tpl,{$form.api_params.html}
templates/CRM/SMS/Form/Provider.tpl,{$form.is_active.html}
templates/CRM/SMS/Form/Provider.tpl,{$form.is_active.label}
templates/CRM/SMS/Form/Provider.tpl,{$form.is_default.html}
templates/CRM/SMS/Form/Provider.tpl,{$form.is_default.label}
templates/CRM/SMS/Form/Provider.tpl,{$form.formClass}
templates/CRM/SMS/Form/Provider.tpl,{$refreshURL}
templates/CRM/SMS/Form/Schedule.tpl,{$form.send_option.html}
templates/CRM/SMS/Form/Schedule.tpl,{$form.start_date.html}
templates/CRM/SMS/Form/Schedule.tpl,{$preview.viewURL}
templates/CRM/SMS/Form/Schedule.tpl,{$preview.viewURL}
templates/CRM/SMS/Form/Task/SMS.tpl,{$from|escape}
templates/CRM/SMS/Form/Task/SMS.tpl,{$to|escape}
templates/CRM/SMS/Form/Task/SMS.tpl,{$form.to.label}
templates/CRM/SMS/Form/Task/SMS.tpl,{$form.to.html}
templates/CRM/SMS/Form/Task/SMS.tpl,{$form.message.label}
templates/CRM/SMS/Form/Task/SMS.tpl,{$form.message.html}
templates/CRM/SMS/Form/Task/SMS.tpl,{$form.buttons.html}
templates/CRM/SMS/Form/Upload.tpl,{$form.SMStemplate.label}
templates/CRM/SMS/Form/Upload.tpl,{$form.SMStemplate.html}
templates/CRM/SMS/Form/Upload.tpl,{$form.upload_type.label}
templates/CRM/SMS/Form/Upload.tpl,{$form.upload_type.html}
templates/CRM/SMS/Form/Upload.tpl,{$form.textFile.label}
templates/CRM/SMS/Form/Upload.tpl,{$form.textFile.html}
templates/CRM/SMS/Form/Upload.tpl,{$docLink}
templates/CRM/SMS/Page/Provider.tpl,{$wikiLink}
templates/CRM/SMS/Page/Provider.tpl,{$row.id}
templates/CRM/SMS/Page/Provider.tpl,{$row.class}
templates/CRM/SMS/Page/Provider.tpl,{$row.name}
templates/CRM/SMS/Page/Provider.tpl,{$row.title}
templates/CRM/SMS/Page/Provider.tpl,{$row.api_type}
templates/CRM/SMS/Page/Provider.tpl,{$row.api_url}
templates/CRM/SMS/Page/Provider.tpl,{$row.username}
templates/CRM/SMS/Page/Provider.tpl,{$row.api_params}
templates/CRM/SMS/Page/Provider.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Tag/Form/Edit.tpl,{$form.name.label}
templates/CRM/Tag/Form/Edit.tpl,{$form.name.html}
templates/CRM/Tag/Form/Edit.tpl,{$form.description.label}
templates/CRM/Tag/Form/Edit.tpl,{$form.description.html}
templates/CRM/Tag/Form/Edit.tpl,{$form.parent_id.label}
templates/CRM/Tag/Form/Edit.tpl,{$form.parent_id.html}
templates/CRM/Tag/Form/Edit.tpl,{$form.used_for.label}
templates/CRM/Tag/Form/Edit.tpl,{$form.used_for.html}
templates/CRM/Tag/Form/Edit.tpl,{$form.color.label}
templates/CRM/Tag/Form/Edit.tpl,{$form.color.html}
templates/CRM/Tag/Form/Edit.tpl,{$form.is_reserved.label}
templates/CRM/Tag/Form/Edit.tpl,{$form.is_reserved.html}
templates/CRM/Tag/Form/Edit.tpl,{$form.is_selectable.label}
templates/CRM/Tag/Form/Edit.tpl,{$form.is_selectable.html}
templates/CRM/Tag/Form/Edit.tpl,{$form.$element_name.html}
templates/CRM/Tag/Form/Edit.tpl,{$form.$element_name.label}
templates/CRM/Tag/Form/Edit.tpl,{$form.formClass}
templates/CRM/Tag/Form/Merge.tpl,{$form.name.label}
templates/CRM/Tag/Form/Merge.tpl,{$form.name.html}
templates/CRM/Tag/Form/Tag.tpl,{$entityID}
templates/CRM/Tag/Form/Tag.tpl,{$entityTable}
templates/CRM/Tag/Form/Tag.tpl,{$form.formClass}
templates/CRM/Tag/Form/Tagtree.tpl,{$level}
templates/CRM/Tag/Form/Tagtree.tpl,{$id}
templates/CRM/Tag/Form/Tagtree.tpl,{$allTags.$id.color}
templates/CRM/Tag/Form/Tagtree.tpl,{$allTags.$id.color|colorContrast}
templates/CRM/Tag/Form/Tagtree.tpl,{$node.description|escape}
templates/CRM/Tag/Form/Tagtree.tpl,{$node.name}
templates/CRM/Tag/Page/Tag.tpl,{$set.id}
templates/CRM/Tag/Page/Tag.tpl,{$set.name}
templates/CRM/Tag/Page/Tag.tpl,{$set.id}
templates/CRM/Tag/Page/Tag.tpl,{$tagsets|@json_encode}
templates/CRM/Tag/Page/Tag.tpl,{$user|@json_encode}
templates/CRM/Tag/Page/Tag.tpl,{$usedFor|@json_encode}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.group.label}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.group.html}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.add_contact_to_group.label}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.add_contact_to_group.html}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.notify.label}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.notify.html}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.post_URL.label}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.post_URL.html}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.add_cancel_button.html}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.add_cancel_button.label}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.cancel_URL.label}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.cancel_URL.html}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$entityInClassFormat}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$fieldName}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$fieldSpec.class}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.add_captcha.html}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.add_captcha.label}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.is_cms_user.label}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.is_cms_user.html}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.is_update_dupe.label}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.is_update_dupe.html}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.is_proximity_search.label}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.is_proximity_search.html}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.is_map.html}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.is_map.label}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.is_edit_link.html}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.is_edit_link.label}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.is_uf_link.html}
templates/CRM/UF/Form/AdvanceSetting.tpl,{$form.is_uf_link.label}
templates/CRM/UF/Form/Block.tpl,{$help_pre}
templates/CRM/UF/Form/Block.tpl,{$field.groupHelpPost}
templates/CRM/UF/Form/Block.tpl,{$form.buttons.html}
templates/CRM/UF/Form/Block.tpl,{$help_post}
templates/CRM/UF/Form/Field.tpl,{$form.field_name.label}
templates/CRM/UF/Form/Field.tpl,{$form.field_name.html}
templates/CRM/UF/Form/Field.tpl,{$form.label.label}
templates/CRM/UF/Form/Field.tpl,{$form.label.html}
templates/CRM/UF/Form/Field.tpl,{$form.is_multi_summary.label}
templates/CRM/UF/Form/Field.tpl,{$form.is_multi_summary.html}
templates/CRM/UF/Form/Field.tpl,{$form.is_required.label}
templates/CRM/UF/Form/Field.tpl,{$form.is_required.html}
templates/CRM/UF/Form/Field.tpl,{$form.is_view.label}
templates/CRM/UF/Form/Field.tpl,{$form.is_view.html}
templates/CRM/UF/Form/Field.tpl,{$form.visibility.label}
templates/CRM/UF/Form/Field.tpl,{$form.visibility.html}
templates/CRM/UF/Form/Field.tpl,{$form.is_searchable.label}
templates/CRM/UF/Form/Field.tpl,{$form.is_searchable.html}
templates/CRM/UF/Form/Field.tpl,{$form.in_selector.label}
templates/CRM/UF/Form/Field.tpl,{$form.in_selector.html}
templates/CRM/UF/Form/Field.tpl,{$form.help_pre.label}
templates/CRM/UF/Form/Field.tpl,{$form.help_pre.html}
templates/CRM/UF/Form/Field.tpl,{$form.help_post.label}
templates/CRM/UF/Form/Field.tpl,{$form.help_post.html}
templates/CRM/UF/Form/Field.tpl,{$form.weight.label}
templates/CRM/UF/Form/Field.tpl,{$form.weight.html}
templates/CRM/UF/Form/Field.tpl,{$form.is_active.label}
templates/CRM/UF/Form/Field.tpl,{$form.is_active.html}
templates/CRM/UF/Form/Field.tpl,{$initHideBoxes}
templates/CRM/UF/Form/Field.tpl,{$otherModules|@json_encode}
templates/CRM/UF/Form/Field.tpl,{$val}
templates/CRM/UF/Form/Fields.tpl,{$groupHelpPost}
templates/CRM/UF/Form/Fields.tpl,{$field.group_id}
templates/CRM/UF/Form/Fields.tpl,{$field.groupName}
templates/CRM/UF/Form/Fields.tpl,{$field.groupDisplayTitle}
templates/CRM/UF/Form/Fields.tpl,{$field.groupTitle}
templates/CRM/UF/Form/Fields.tpl,{$field.groupHelpPre}
templates/CRM/UF/Form/Fields.tpl,{$field.help_pre}
templates/CRM/UF/Form/Fields.tpl,{$profileFieldName}
templates/CRM/UF/Form/Fields.tpl,{$profileFieldName}
templates/CRM/UF/Form/Fields.tpl,{$field.help_pre}
templates/CRM/UF/Form/Fields.tpl,{$profileFieldName}
templates/CRM/UF/Form/Fields.tpl,{$profileFieldName}
templates/CRM/UF/Form/Fields.tpl,{$formElement.label}
templates/CRM/UF/Form/Fields.tpl,{$formElement.$key.html}
templates/CRM/UF/Form/Fields.tpl,{$profileFieldName}
templates/CRM/UF/Form/Fields.tpl,{$profileFieldName}
templates/CRM/UF/Form/Fields.tpl,{$formElement.label}
templates/CRM/UF/Form/Fields.tpl,{$form.$provider.html}
templates/CRM/UF/Form/Fields.tpl,{$formElement.value|crmDate:$field.smarty_view_format}
templates/CRM/UF/Form/Fields.tpl,{$formElement.name}
templates/CRM/UF/Form/Fields.tpl,{$formElement.value}
templates/CRM/UF/Form/Fields.tpl,{$formElement.name}
templates/CRM/UF/Form/Fields.tpl,{$formElement.html}
templates/CRM/UF/Form/Fields.tpl,{$form.$phone_ext_field.html}
templates/CRM/UF/Form/Fields.tpl,{$form.onbehalfof_id.html}
templates/CRM/UF/Form/Fields.tpl,{$viewOnlyPrefixFileValues.$prefix.$profileFieldName}
templates/CRM/UF/Form/Fields.tpl,{$formElement.html}
templates/CRM/UF/Form/Fields.tpl,{$viewOnlyFileValues.$profileFieldName}
templates/CRM/UF/Form/Fields.tpl,{$formElement.html}
templates/CRM/UF/Form/Fields.tpl,{$profileFieldName}
templates/CRM/UF/Form/Fields.tpl,{$profileFieldName}
templates/CRM/UF/Form/Fields.tpl,{$field.help_post}
templates/CRM/UF/Form/Group.tpl,{$profileTitle}
templates/CRM/UF/Form/Group.tpl,{$message}
templates/CRM/UF/Form/Group.tpl,{$entityInClassFormat}
templates/CRM/UF/Form/Group.tpl,{$fieldName}
templates/CRM/UF/Form/Group.tpl,{$form.weight.label}
templates/CRM/UF/Form/Group.tpl,{$form.weight.html}
templates/CRM/UF/Form/Group.tpl,{$form.help_pre.label}
templates/CRM/UF/Form/Group.tpl,{$form.help_pre.html}
templates/CRM/UF/Form/Group.tpl,{$form.help_post.label}
templates/CRM/UF/Form/Group.tpl,{$form.help_post.html}
templates/CRM/UF/Form/Group.tpl,{$form.is_active.html}
templates/CRM/UF/Form/Group.tpl,{$form.is_active.label}
templates/CRM/UF/Form/Preview.tpl,"{$config->lcMessages|truncate:2:"""":true}"
templates/CRM/UF/Form/Preview.tpl,"{$config->lcMessages|truncate:2:"""":true}"
templates/CRM/UF/Form/Preview.tpl,{$help_pre}
templates/CRM/UF/Form/Preview.tpl,{$field.groupHelpPost}
templates/CRM/UF/Page/Field.tpl,{$row.id}
templates/CRM/UF/Page/Field.tpl,{$row.class}
templates/CRM/UF/Page/Field.tpl,{$row.label}
templates/CRM/UF/Page/Field.tpl,{$row.field_type}
templates/CRM/UF/Page/Field.tpl,{$row.visibility_display}
templates/CRM/UF/Page/Field.tpl,{$row.weight}
templates/CRM/UF/Page/Field.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/UF/Page/Group.tpl,{$profile}
templates/CRM/UF/Page/Group.tpl,{$row.id}
templates/CRM/UF/Page/Group.tpl,{$row.class}
templates/CRM/UF/Page/Group.tpl,{$row.title}
templates/CRM/UF/Page/Group.tpl,{$row.frontend_title}
templates/CRM/UF/Page/Group.tpl,{$row.created_by}
templates/CRM/UF/Page/Group.tpl,{$row.description}
templates/CRM/UF/Page/Group.tpl,{$row.group_type}
templates/CRM/UF/Page/Group.tpl,{$row.id}
templates/CRM/UF/Page/Group.tpl,{$row.module}
templates/CRM/UF/Page/Group.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/UF/Page/Group.tpl,{$row.id}
templates/CRM/UF/Page/Group.tpl,{$row.class}
templates/CRM/UF/Page/Group.tpl,{$row.title}
templates/CRM/UF/Page/Group.tpl,{$row.frontend_title}
templates/CRM/UF/Page/Group.tpl,{$row.created_by}
templates/CRM/UF/Page/Group.tpl,{$row.description}
templates/CRM/UF/Page/Group.tpl,{$row.group_type}
templates/CRM/UF/Page/Group.tpl,{$row.id}
templates/CRM/UF/Page/Group.tpl,{$row.module}
templates/CRM/UF/Page/Group.tpl,{$row.action|replace:'xx':$row.id}
templates/CRM/Upgrade/Base.tpl,{$title}
templates/CRM/Upgrade/Base.tpl,{$message}
templates/CRM/Upgrade/Base.tpl,{$form.buttons.html}
templates/CRM/Widget/Page/Inline/Example.tpl,{$id}
templates/CRM/Widget/Page/Inline/Example.tpl,{$k}
templates/CRM/Widget/Page/Inline/Example.tpl,{$p}
templates/CRM/Widget/widget.tpl,{$flashVars}
templates/CRM/Widget/widget.tpl,{$flashVars}
templates/CRM/Widget/widget.tpl,{$config->resourceBase}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment