a16dvnkalt commited on
Commit
1675d90
·
1 Parent(s): 6e54525

Update icons for bot status and control interface

Browse files

Change the 'bot' icon in base.html to 'cpu' and the 'stop' icon in dashboard.html to 'square'.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 2d768fb3-0398-4d41-b84d-5657cd2ff3fd
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/5ddfcfd3-a3d6-447f-aca6-559268d3ed00/2d768fb3-0398-4d41-b84d-5657cd2ff3fd/GogQBy8

instance/bot_manager.db CHANGED
Binary files a/instance/bot_manager.db and b/instance/bot_manager.db differ
 
templates/base.html CHANGED
@@ -19,7 +19,7 @@
19
  <nav class="navbar navbar-expand-lg navbar-dark bg-dark border-bottom">
20
  <div class="container">
21
  <a class="navbar-brand" href="{{ url_for('dashboard.index') }}">
22
- <i data-feather="bot" class="me-2"></i>
23
  Discord Bot Manager
24
  </a>
25
 
 
19
  <nav class="navbar navbar-expand-lg navbar-dark bg-dark border-bottom">
20
  <div class="container">
21
  <a class="navbar-brand" href="{{ url_for('dashboard.index') }}">
22
+ <i data-feather="cpu" class="me-2"></i>
23
  Discord Bot Manager
24
  </a>
25
 
templates/dashboard.html CHANGED
@@ -92,7 +92,7 @@
92
  <form method="POST" action="{{ url_for('dashboard.stop_bot') }}" class="d-inline">
93
  <button type="submit" class="btn btn-danger"
94
  {% if not status.is_running %}disabled{% endif %}>
95
- <i data-feather="stop" class="me-1"></i>Stop Bot
96
  </button>
97
  </form>
98
 
 
92
  <form method="POST" action="{{ url_for('dashboard.stop_bot') }}" class="d-inline">
93
  <button type="submit" class="btn btn-danger"
94
  {% if not status.is_running %}disabled{% endif %}>
95
+ <i data-feather="square" class="me-1"></i>Stop Bot
96
  </button>
97
  </form>
98