Merge pull request #17374 from totten/master-setlocale
[civicrm-core.git] / templates / CRM / Case / Page / DashBoard.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 {* CiviCase DashBoard (launch page) *}
11
12 <div class="crm-block crm-content-block">
13 {if $notConfigured} {* Case types not present. Component is not configured for use. *}
14 {include file="CRM/Case/Page/ConfigureError.tpl"}
15 {else}
16
17 {capture assign=newCaseURL}{crmURL p="civicrm/case/add" q="action=add&context=standalone&reset=1"}{/capture}
18
19 <div class="crm-submit-buttons crm-case-dashboard-buttons">
20 {if $newClient and $allowToAddNewCase}
21 <a href="{$newCaseURL}" class="button"><span><i class="crm-i fa-plus-circle" aria-hidden="true"></i> {ts}Add Case{/ts}</span></a>
22 {/if}
23 <a class="button no-popup" name="find_my_cases" href="{crmURL p="civicrm/case/search" q="reset=1&case_owner=2&force=1"}"><span><i class="crm-i fa-search" aria-hidden="true"></i> {ts}Find My Cases{/ts}</span></a>
24
25 <div class="crm-case-dashboard-switch-view-buttons">
26 {if $myCases}
27 {* check for access all cases and activities *}
28 {if call_user_func(array('CRM_Core_Permission','check'), 'access all cases and activities')}
29 <div><input name="allupcoming" type="radio" class="radio" onClick='window.location.replace("{crmURL p="civicrm/case" q="reset=1&all=1"}")' value="1"><span>{ts}All Cases with Upcoming Activities{/ts}</span></input></div>
30 <div><input name="allupcoming" checked type="radio" class="radio" onClick='window.location.replace("{crmURL p="civicrm/case" q="reset=1&all=0"}")' value="0"><span>{ts}My Cases with Upcoming Activities{/ts}</span></input></div>
31 {/if}
32 {else}
33 <div><input name="allupcoming" checked type="radio" class="radio" onClick='window.location.replace("{crmURL p="civicrm/case" q="reset=1&all=1"}")' value="1"><span>{ts}All Cases with Upcoming Activities{/ts}</span></input></div>
34 <div><input name="allupcoming" type="radio" class="radio" onClick='window.location.replace("{crmURL p="civicrm/case" q="reset=1&all=0"}")' value="0"><span>{ts}My Cases with Upcoming Activities{/ts}</span></input></div>
35 {/if}
36 </div>
37 </div>
38
39 <h3>
40 {if $myCases}
41 {ts}Summary of Involvement{/ts}
42 {else}
43 {ts}Summary of All Cases{/ts}
44 {/if}
45 </h3>
46 <table class="report">
47 <tr class="columnheader">
48 <th>&nbsp;</th>
49 {foreach from=$casesSummary.headers item=header}
50 <th scope="col" class="right" style="padding-right: 10px;"><a href="{$header.url}">{$header.status}</a></th>
51 {/foreach}
52 </tr>
53 {foreach from=$casesSummary.rows item=row key=caseType}
54 <tr class="crm-case-caseStatus">
55 <th><strong>{$caseType}</strong></th>
56 {foreach from=$casesSummary.headers item=header}
57 {assign var="caseStatus" value=$header.status}
58 <td class="label">
59 {if $row.$caseStatus}
60 <a class="crm-case-summary-drilldown" href="{$row.$caseStatus.url}">{$row.$caseStatus.count}</a>
61 {else}
62 0
63 {/if}
64 </td>
65 {/foreach}
66 </tr>
67 {/foreach}
68 </table>
69 {capture assign=findCasesURL}<a href="{crmURL p="civicrm/case/search" q="reset=1"}">{ts}Find Cases{/ts}</a>{/capture}
70
71 <div class="spacer"></div>
72 <h3>{if $myCases}{ts}My Cases With Upcoming Activities{/ts}{else}{ts}All Cases With Upcoming Activities{/ts}{/if}</h3>
73 {if $upcomingCases}
74 {include file="CRM/Case/Form/CaseFilter.tpl" context="$context" list="upcoming"}
75 <div class="form-item">
76 {include file="CRM/Case/Page/DashboardSelector.tpl" context="dashboard" list="upcoming" all="$all"}
77 </div>
78 {else}
79 <div class="messages status no-popup">
80 {ts 1=$findCasesURL}There are no open cases with activities scheduled in the next two weeks. Use %1 to expand your search.{/ts}
81 </div>
82 {/if}
83
84 <div class="spacer"></div>
85 <h3>{if $myCases}{ts}My Cases With Recently Performed Activities{/ts}{else}{ts}All Cases With Recently Performed Activities{/ts}{/if}</h3>
86 {if $recentCases}
87 {include file="CRM/Case/Form/CaseFilter.tpl" context="$context" list="recent"}
88 <div class="form-item">
89 {include file="CRM/Case/Page/DashboardSelector.tpl" context="dashboard" list="recent" all="$all"}
90 </div>
91 {else}
92 <div class="messages status no-popup">
93 {ts 1=$findCasesURL}There are no cases with activities scheduled in the past two weeks. Use %1 to expand your search.{/ts}
94 </div>
95 {/if}
96 {/if}
97 </div>