forked from Abulhallaj/whmcs-template-six-rtl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
supportticketsubmit-stepone.tpl
33 lines (29 loc) · 1.07 KB
/
supportticketsubmit-stepone.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<br />
<p>{$LANG.supportticketsheader}</p>
<br />
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<div class="row">
{foreach from=$departments key=num item=department}
<div class="col-md-6 margin-bottom">
<p>
<strong>
<a href="{$smarty.server.PHP_SELF}?step=2&deptid={$department.id}">
<i class="fa fa-envelope"></i>
{$department.name}
</a>
</strong>
</p>
{if $department.description}
<p>{$department.description}</p>
{/if}
</div>
{if $num % 2 == true}
<div class="clearfix"></div>
{/if}
{foreachelse}
{include file="$template/includes/alert.tpl" type="info" msg=$LANG.nosupportdepartments textcenter=true}
{/foreach}
</div>
</div>
</div>