summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/edit/index.phtml
diff options
context:
space:
mode:
Diffstat (limited to 'application/views/scripts/edit/index.phtml')
-rw-r--r--application/views/scripts/edit/index.phtml36
1 files changed, 36 insertions, 0 deletions
diff --git a/application/views/scripts/edit/index.phtml b/application/views/scripts/edit/index.phtml
new file mode 100644
index 0000000..614e962
--- /dev/null
+++ b/application/views/scripts/edit/index.phtml
@@ -0,0 +1,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>