blob: 1637a80f7e38e52434211a29b43ba2c9a021e116 (
plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
{* Index we display a wiki page here *}
{include file="bitpackage:kernel/header.tpl"}
{if $gBitSystem->isFeatureActive( 'bidirectional_text' )}
<table dir="rtl"><tr><td>
{/if}
<div id="bitbody">
{include file="bitpackage:kernel/top.tpl"}
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>
{if $gBitSystem->isFeatureActive( 'site_left_column' ) && $l_modules}
<td id="bitleft">
{section name=homeix loop=$l_modules}
{$l_modules[homeix].data}
{/section}
</td>
{/if}
<td id="bitmain">
<div id="bitmainfx">
<div class="error">
<div class="admin box">
<h3>{tr}Error{/tr}</h3>
<div class="boxcontent">
{$msg}<br /><br />
<form action="{$self}{if $query}?{$query|escape}{/if}" method="post">
{foreach key=k item=i from=$post}
<input type="hidden" name="{$k}" value="{$i|escape}" />
{/foreach}
<input type="submit" class="btn btn-default" name="ticket_action_button" value="{tr}Click here to confirm your action{/tr}" />
</form><br /><br />
<a href="javascript:history.back()">{tr}Go back{/tr}</a><br /><br />
<a href="{$bit_index}">{tr}Return to home page{/tr}</a>
</div>
</div>
</div>
</div>
</td>
{if $gBitSystem->isFeatureActive( 'site_right_column' ) && $r_modules}
<td id="bitright">
{section name=homeix loop=$r_modules}
{$r_modules[homeix].data}
{/section}
</td>
{/if}
</tr>
</table>
{if $gBitSystem->isFeatureActive( 'site_bot_bar' )}
<div id="bitbottom">
{include file="bitpackage:kernel/bot_bar.tpl"}
</div>
{/if}
</div> {* end #bitbody *}
{if $gBitSystem->isFeatureActive( 'bidirectional_text' )}
</td></tr></table>
{/if}
{include file="bitpackage:kernel/footer.tpl"}
|