-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy patherror_ticket.tpl
58 lines (56 loc) · 1.79 KB
/
error_ticket.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
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
{* $Id: error_ticket.tpl 45011 2013-03-01 06:20:00Z chibaguy $ *}<!DOCTYPE html>
<html lang="{if !empty($pageLang)}{$pageLang}{else}{$prefs.language}{/if}">
<head>
{include file='header.tpl'}
</head>
<body{html_body_attributes}>
{* Index we display a wiki page here *}
{if $prefs.feature_bidi eq 'y'}
<table dir="rtl" ><tr><td>
{/if}
<div id="tiki-main">
<div id="tiki-mid">
<table border="0" cellpadding="0" cellspacing="0" id="tikimidtbl">
<tr>
{if $prefs.feature_left_column eq 'y'}
<td id="leftcolumn">
{section name=homeix loop=$left_modules}
{$left_modules[homeix].data}
{/section}
</td>
{/if}
<td id="centercolumn"><div id="tiki-center">
<br>
<div class="cbox">
<div class="cbox-title">{icon _id=exclamation alt="{tr}Error{/tr}" style="vertical-align:middle"} {$errortitle|default:"{tr}Error{/tr}"}
</div>
<div class="cbox-data">
<br>{$msg}
<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" name="ticket_action_button" value="{tr}Click here to confirm your action{/tr}">
</form><br><br>
{if $prefs.javascript_enabled eq 'y'}{button href="javascript:history.back()" _text="{tr}Go back{/tr}"}<br><br>{/if}
{button href="$prefs.tikiIndex" _text="{tr}Return to home page{/tr}"}
</div>
</div>
</div></td>
{if $prefs.feature_right_column eq 'y'}
<td id="rightcolumn">
{section name=homeix loop=$right_modules}
{$right_modules[homeix].data}
{/section}
</td>
{/if}
</tr>
</table>
</div>
</div>
{if $prefs.feature_bidi eq 'y'}
</td></tr></table>
{/if}
{include file='footer.tpl'}
</body>
</html>