summaryrefslogtreecommitdiff
path: root/templates/elements/status_pgsql_options.tpl
blob: 771def4ae4b0ab12f2e188ab165f987178200b6a (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
{* stop option *}
<div id="stopPgsqlDiv" style="visibility: hidden; position: absolute;">
<h3>{$message.strStopPgsqlOption|escape}</h3>
<form action="status.php" name="stopPgsqlForm" method="post"
      onSubmit="return execStopPgsql()" />
<table>
<thead>
    <tr><th colspan="2">{$message.strCmdM|escape} (-m)</th></tr>
</thead>
<tbody>
    {include file="elements/status_stop_option.tpl"}
</tbody>
<tfoot>
    <tr><td colspan="2">
    <input type="submit"
           value="{$message.strStopPgsql|escape}" />
    <input type="button" name="command" onclick="cancelButtonHandler('stopPgsqlDiv')"
           value="{$message.strCancel|escape}" />
    </td></tr>
</tfoot>
</table>
</form>
</div>

{* restart option *}
<div id="restartPgsqlDiv" style="visibility: hidden; position: absolute;">
<h3>{$message.strRestartPgsqlOption|escape}</h3>
<form action="status.php" name="restartPgsqlForm" method="post"
      onSubmit="return execRestartPgsql()" />
<table>
<thead>
    <tr><th colspan="2">{$message.strCmdM|escape} (-m)</th></tr>
</thead>
<tbody>
    {include file="elements/status_stop_option.tpl"}
</tbody>
<tfoot>
    <tr><td colspan="2">
    <input type="submit"
           value="{$message.strRestartPgsql|escape}" />
    <input type="button" name="command" onclick="cancelButtonHandler('restartPgsqlDiv')"
           value="{$message.strCancel|escape}" />
    </td></tr>
</tfoot>
</table>
</form>
</div>