| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <div class="table">
- <?php $this->partial ('configure_aside'); ?>
- <datalist id="keys">
- <?php foreach ($this->list_keys as $key) { ?>
- <option value="<?php echo $key; ?>">
- <?php } ?>
- </datalist>
- <?php $s = $this->conf->shortcuts (); ?>
- <form method="post" action="">
- <h1>Gérer les raccourcis</h1>
-
- <noscript>Le javascript doit être activé pour pouvoir utiliser les raccourcis</noscript>
-
- <label for="mark_read">Marquer l'article comme lu / non lu</label>
- <input type="text" id="mark_read" name="shortcuts[mark_read]" list="keys" value="<?php echo $s['mark_read']; ?>" />
- <p>+ <code>shift</code> pour marquer tous les articles comme non lus</p>
-
- <label for="mark_favorite">Mettre l'article en favori</label>
- <input type="text" id="mark_favorite" name="shortcuts[mark_favorite]" list="keys" value="<?php echo $s['mark_favorite']; ?>" />
-
- <label for="go_website">Afficher l'article sur le site d'origine</label>
- <input type="text" id="go_website" name="shortcuts[go_website]" list="keys" value="<?php echo $s['go_website']; ?>" />
-
- <label for="next_entry">Passer à l'article suivant</label>
- <input type="text" id="next_entry" name="shortcuts[next_entry]" list="keys" value="<?php echo $s['next_entry']; ?>" />
- <p>+ <code>shift</code> pour passer au dernier article de la page</p>
-
- <label for="prev_entry">Passer à l'article précédent</label>
- <input type="text" id="prev_entry" name="shortcuts[prev_entry]" list="keys" value="<?php echo $s['prev_entry']; ?>" />
- <p>+ <code>shift</code> pour passer au premier article de la page</p>
-
- <label for="next_page">Passer à la page suivant</label>
- <input type="text" id="next_page" name="shortcuts[next_page]" list="keys" value="<?php echo $s['next_page']; ?>" />
- <p>+ <code>shift</code> pour passer à la dernière page</p>
-
- <label for="prev_page">Passer à la page précédente</label>
- <input type="text" id="prev_page" name="shortcuts[prev_page]" list="keys" value="<?php echo $s['prev_page']; ?>" />
- <p>+ <code>shift</code> pour passer à la première page</p>
-
- <input type="submit" value="Valider" />
- </form>
- </div>
|