commit 67dd7869f8c0f77b393118cd4e814fa5a08248ca
parent 4c0376e65347d6db152cdd2e2ea4208e6ff0f973
Author: Friedel Schön <[email protected]>
Date: Sun, 17 Apr 2022 10:52:47 +0200
moved 'account' to sidebar
Diffstat:
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/pgmles/site.db b/pgmles/site.db
Binary files differ.
diff --git a/pgmles/templates/layout.html b/pgmles/templates/layout.html
@@ -28,7 +28,6 @@
<!-- Navbar Right Side -->
<div class="navbar-nav">
{% if current_user.is_authenticated %}
- <a class="nav-item nav-link" href="{{ url_for('account') }}">Profiel</a>
<a class="nav-item nav-link" href="{{ url_for('logout') }}">Uitloggen</a>
{% else %}
<a class="nav-item nav-link" href="{{ url_for('login') }}">Inloggen</a>
@@ -56,10 +55,13 @@
<div class="col-md-4">
<div class="content-section">
<h3>Welkom <b>{{ current_user.username if current_user.is_authenticated else 'gast' }}</b>!</h3>
- {% if current_user.type == 'teacher' or current_user.type == 'admin' %}
+ {% if current_user.is_authenticated %}
<p class='text-muted'>
<ul class="list-group">
+ <li class="list-group-item list-group-item-light"><a href="{{ url_for('account') }}">Instellingen</a></li>
+ {% if current_user.type == 'teacher' or current_user.type == 'admin' %}
<li class="list-group-item list-group-item-light"><a href="{{ url_for('course_overview') }}">Lesoverzicht</a></li>
+ {% endif %}
{% if current_user.type == 'admin' %}
<li class="list-group-item list-group-item-light"><a href="{{ url_for('admin') }}">Profielen bewerken</a></li>
{% endif %}
@@ -88,7 +90,6 @@
</div>
</main>
-
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>