summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/edit/index.phtml
blob: 614e96262cedcec6dfe33589d77fc31c0bf3b524 (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
<?php if (! $this->compact): ?>
<div class="controls">
    <?= $this->tabs ?>
</div>
<?php endif ?>
<div class="content full-form">
    <h1><?= $title ?></h1>
    <?= $form ?>
    <h2><?= $this->translate('Editor Help') ?></h2>
    <table class="name-value-table">
        <tr>
            <th>Ctrl-F / Cmd-F</th>
            <td><?= $this->translate('Persistent search (dialog doesn\'t autoclose, enter to find next, Shift-Enter to find previous)') ?></td>
        </tr>
        <tr>
            <th>Ctrl-G / Cmd-G</th>
            <td><?= $this->translate('Find next') ?></td>
        </tr>
        <tr>
            <th>Shift-Ctrl-G / Shift-Cmd-G</th>
            <td><?= $this->translate('Find previous') ?></td>
        </tr>
        <tr>
            <th>Shift-Ctrl-F / Cmd-Option-F</th>
            <td><?= $this->translate('Replace') ?></td>
        </tr>
        <tr>
            <th>Shift-Ctrl-R / Shift-Cmd-Option-F</th>
            <td><?= $this->translate('Replace all') ?></td>
        </tr>
        <tr>
            <th>Alt-G</th>
            <td><?= $this->translate('Jump to line') ?></td>
        </tr>
    </table>
</div>