diff options
Diffstat (limited to 'templates/config_index.php')
-rw-r--r-- | templates/config_index.php | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/templates/config_index.php b/templates/config_index.php new file mode 100644 index 00000000..43145caf --- /dev/null +++ b/templates/config_index.php @@ -0,0 +1,55 @@ +<section id="main"> + + <?php if ($user['is_admin']): ?> + <div class="page-header"> + <h2><?= t('Application Settings') ?></h2> + </div> + <section> + <form method="post" action="?controller=config&action=save" autocomplete="off"> + + <?= Helper\form_label(t('Language'), 'language') ?> + <?= Helper\form_select('language', $languages, $values, $errors) ?><br/> + + <?= Helper\form_label(t('Webhooks token'), 'webhooks_token') ?> + <?= Helper\form_text('webhooks_token', $values, $errors, array('readonly')) ?><br/> + + <div class="form-actions"> + <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> + </div> + </form> + </section> + <div class="page-header"> + <h2><?= t('More information') ?></h2> + </div> + <section class="settings"> + <ul> + <li><?= t('Database size:') ?> <strong><?= Helper\format_bytes($db_size) ?></strong></li> + <li> + <a href="?controller=config&action=downloadDb"><?= t('Download the database') ?></a> + <?= t('(Gzip compressed Sqlite file)') ?> + </li> + <li> + <a href="?controller=config&action=optimizeDb"><?= t('Optimize the database') ?></a> + <?= t('(VACUUM command)') ?> + </li> + <li> + <?= t('Official website:') ?> + <a href="http://kanboard.net/" target="_blank">http://kanboard.net/</a> + </li> + </ul> + </section> + <?php endif ?> + + <div class="page-header"> + <h2><?= t('User Settings') ?></h2> + </div> + <section class="settings"> + <ul> + <li> + <strong><?= t('My default project:') ?> </strong> + <?= isset($user['default_project_id']) ? $projects[$user['default_project_id']] : t('None') ?>, + <a href="?controller=user&action=edit&user_id=<?= $user['id'] ?>"><?= t('edit') ?></a> + </li> + </ul> + </section> +</section>
\ No newline at end of file |