-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8e1d337
commit dce304b
Showing
2 changed files
with
65 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<div class="row-fluid"> | ||
<div class="page-header"> | ||
<h1>Create an account!</h1> | ||
</div> | ||
</div> | ||
|
||
<div class="row-fluid"> | ||
{foreach from=$requestSectionData key="header" item="section"} | ||
<div> | ||
<h2>{$header}</h2> | ||
{$section} | ||
</div> | ||
{/foreach} | ||
</div> | ||
|
||
<hr /> | ||
|
||
<div class="row-fluid"> | ||
<h2>Last 5 Closed requests</h2> | ||
<table class="table table-condensed table-striped" style="width:auto;"> | ||
<thead> | ||
<th>ID</th> | ||
<th>Name</th> | ||
<th>{* zoom *}</th> | ||
</thead> | ||
{foreach from=$lastFive item="req"} | ||
<tr> | ||
<th>{$req.pend_id}</th> | ||
<td> | ||
{$req.pend_name|escape} | ||
</td> | ||
<td> | ||
<a href="{$tsurl}/acc.php?action=zoom&id={$req.pend_id|escape:'url'}" class="btn btn-info"> | ||
<i class="icon-white icon-search"></i> Zoom | ||
</a> | ||
</td> | ||
<td> | ||
<a href="{$tsurl}/acc.php?action=defer&id={$req.pend_id|escape:'url'}&sum={$req.pend_checksum|escape:'url'}&target=Open" class="btn btn-warning"> | ||
<i class="icon-white icon-refresh"></i> Reset | ||
</a> | ||
</td> | ||
</tr> | ||
{/foreach} | ||
</table> | ||
</div> |