Merge pull request #18327 from civicrm/5.29
[civicrm-core.git] / templates / CRM / Case / Form / ViewRelatedCases.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | Copyright CiviCRM LLC. All rights reserved. |
4 | |
5 | This work is published under the GNU AGPLv3 license with some |
6 | permitted exceptions and without any warranty. For full license |
7 | and copyright information, see https://civicrm.org/licensing |
8 +--------------------------------------------------------------------+
9 *}
10 {* Ajax-loaded list of related cases *}
11 <table class="report">
12 <tr class="columnheader">
13 <th>{ts}Client Name{/ts}</th>
14 <th>{ts}Case Type{/ts}</th>
15 <th></th>
16 </tr>
17
18 {foreach from=$relatedCases item=row key=caseId}
19 <tr>
20 <td class="crm-case-caseview-client_name label">{$row.client_name}</td>
21 <td class="crm-case-caseview-case_type label">{$row.case_type}</td>
22 <td class="label">{$row.links}</td>
23 </tr>
24 {/foreach}
25 </table>