Skip to content

Commit 31c01c7

Browse files
chore: dashboard improved
1 parent 16c15d1 commit 31c01c7

File tree

6 files changed

+0
-60
lines changed

6 files changed

+0
-60
lines changed

static/css/manager_dashbaord.css

Lines changed: 0 additions & 9 deletions
This file was deleted.

templates/admin_dashboard.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ <h3><i class="fas fa-tools"></i> Admin Tools</h3>
5252
</div>
5353
<div class="admin-dashboard">
5454
<h3><i class="fas fa-history"></i> Recent Activity</h3>
55-
# audit logs
5655
{% for log in audit_logs %}
5756
<p>{{ log.timestamp }} - {{ log.action }}</p>
5857
<p> {{ log.details }}</p>

templates/customer_dashboard.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ <h3><i class="fas fa-user-circle"></i> Your Profile</h3>
2424

2525
<div class="recent-activity">
2626
<h3><i class="fas fa-history"></i> Recent Activity</h3>
27-
# audit logs
2827
{% for log in audit_logs %}
2928
<p>{{ log.timestamp }} - {{ log.action }}</p>
3029
<p> {{ log.details }}</p>

templates/dashboard.html

Lines changed: 0 additions & 19 deletions
This file was deleted.

templates/manage_users.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ <h2>Manage Users</h2>
2727
<input type="hidden" name="user_id" value="{{ user.id }}">
2828
<select name="user_level">
2929
<option value="customer" {% if user.user_level == 'customer' %}selected{% endif %}>Customer</option>
30-
<option value="manager" {% if user.user_level == 'manager' %}selected{% endif %}>Manager</option>
3130
<option value="admin" {% if user.user_level == 'admin' %}selected{% endif %}>Admin</option>
3231
</select>
3332
<button type="submit">Update</button>

templates/manager_dashboard.html

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)