Merge pull request #17640 from samuelsov/bugreportcivigrant
[civicrm-core.git] / templates / CRM / Case / Form / ViewRelatedCases.tpl
CommitLineData
c1c6e20c
CW
1{*
2 +--------------------------------------------------------------------+
1188c7a8 3 | Copyright CiviCRM LLC. All rights reserved. |
c1c6e20c 4 | |
1188c7a8
TO
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 |
c1c6e20c
CW
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>