forked from osiloke/template-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupportticketsubmit-stepone.tpl
More file actions
30 lines (28 loc) · 920 Bytes
/
supportticketsubmit-stepone.tpl
File metadata and controls
30 lines (28 loc) · 920 Bytes
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
<section>
<div class="container">
<h1>{$LANG.navopenticket}</h1>
<p>{$LANG.supportticketsheader}</p>
{foreach from=$departments item=department name=departments}
{if $smarty.foreach.departments.first}
<div class="row margin-top">
{elseif $smarty.foreach.departments.index % 3 == 0 }
</div>
<div class="row margin-top">
{/if}
<div class="col-md-4 text-center">
<h3>{$department.name}</h3>
{if $department.description}<p>{$department.description}</p>{/if}
<a href="{$smarty.server.PHP_SELF}?step=2&deptid={$department.id}" title="{$department.name}" class="btn btn-primary">{$LANG.navopenticket}</a>
</div>
{if $smarty.foreach.departments.last}
</div>
{/if}
{foreachelse}
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="alert alert-warning text-center">{$LANG.nosupportdepartments}</div>
</div>
</div>
{/foreach}
</div>
</section>