kabano/views/d.admin.html

24 lines
798 B
HTML
Raw Normal View History

2017-12-20 20:49:11 +00:00
<!DOCTYPE html>
<html lang="fr">
<? include('blocks/d.head.html'); ?>
<body>
<? include('blocks/d.nav.html'); ?>
<section>
<h1>Administration.</h1>
<br>
2018-10-30 20:45:12 +00:00
<? if($user->rankIsHigher("administrator")) { ?>
<a href="<?=$config['rel_root_folder']?>admin/git-pull" class="button"><i class="fas fa-sync-alt"></i> Mettre à jour</a> <small>Met à jour le logiciel depuis le dépôt GIT.</small><br><br>
2017-12-20 20:49:11 +00:00
<? } ?>
2018-10-30 20:45:12 +00:00
<? if($user->rankIsHigher("moderator")) { ?>
<a href="<?=$config['rel_root_folder']?>admin/logs" class="button"><i class="fas fa-history"></i> Voir les logs</a> <small>Permet d'accéder aux 200 dernières lignes des logs bruts des actions sur la base de données.</small><br><br>
2017-12-20 20:49:11 +00:00
<? } ?>
</section>
<? include('blocks/d.footer.html'); ?>
</body>
</html>