90 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="EN">
 | 
						|
<head>
 | 
						|
    <script src="/static/js/reporter.js" type="application/javascript"></script>
 | 
						|
 | 
						|
    <meta name="description" content="The most powerful Discord Reminders Bot">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <meta name="yandex-verification" content="bb77b8681eb64a90"/>
 | 
						|
    <meta name="google-site-verification" content="7h7UVTeEe0AOzHiH3cFtsqMULYGN-zCZdMT_YCkW1Ho"/>
 | 
						|
    <!-- <meta http-equiv="Content-Security-Policy" content="default-src 'self'; img-src *; font-src fonts.gstatic.com 'self'"> -->
 | 
						|
 | 
						|
    <!-- favicon -->
 | 
						|
    <link rel="apple-touch-icon" sizes="180x180"
 | 
						|
          href="/static/favicon/apple-touch-icon.png">
 | 
						|
    <link rel="icon" type="image/png" sizes="32x32"
 | 
						|
          href="/static/favicon/favicon-32x32.png">
 | 
						|
    <link rel="icon" type="image/png" sizes="16x16"
 | 
						|
          href="/static/favicon/favicon-16x16.png">
 | 
						|
    <link rel="manifest" href="/static/favicon/site.webmanifest">
 | 
						|
    <meta name="msapplication-TileColor" content="#da532c">
 | 
						|
    <meta name="theme-color" content="#ffffff">
 | 
						|
 | 
						|
    <title>Reminder Bot | Admin</title>
 | 
						|
 | 
						|
    <!-- styles -->
 | 
						|
    <link rel="stylesheet" href="/static/css/bulma.min.css">
 | 
						|
    <link rel="stylesheet" href="/static/css/fa.css">
 | 
						|
    <link rel="stylesheet" href="/static/css/font.css">
 | 
						|
    <link rel="stylesheet" href="/static/css/style.css">
 | 
						|
    <link rel="stylesheet" href="/static/css/dtsel.css">
 | 
						|
 | 
						|
    <script src="/static/js/luxon.min.js"></script>
 | 
						|
</head>
 | 
						|
<body style="width: 100%;">
 | 
						|
 | 
						|
<p class="title pageTitle">Admin dashboard</p>
 | 
						|
<section id="main">
 | 
						|
    <div class="stat-row">
 | 
						|
        <div class="stat-box" style="height: 400px;">
 | 
						|
            <canvas id="schedule"></canvas>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
    <div class="stat-row">
 | 
						|
        <div class="stat-box figure">
 | 
						|
            <p>Backlog</p>
 | 
						|
            <p class="figure-num" id="backlog">?</p>
 | 
						|
        </div>
 | 
						|
        <div class="stat-box figure">
 | 
						|
            <p>Reminders</p>
 | 
						|
            <p class="figure-num" id="reminders">?</p>
 | 
						|
        </div>
 | 
						|
        <div class="stat-box figure">
 | 
						|
            <p>Intervals</p>
 | 
						|
            <p class="figure-num" id="intervals">?</p>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
    <div class="stat-row">
 | 
						|
        <div class="stat-box" style="height: 400px;">
 | 
						|
            <canvas id="scheduleLong"></canvas>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
    <div class="stat-row">
 | 
						|
        <div class="stat-box figure">
 | 
						|
            <p>Last 31 days (success)</p>
 | 
						|
            <p class="figure-num" id="historySent">?</p>
 | 
						|
        </div>
 | 
						|
        <div class="stat-box figure">
 | 
						|
            <p>Last 31 days (failed)</p>
 | 
						|
            <p class="figure-num" id="historyFailed">?</p>
 | 
						|
        </div>
 | 
						|
        <div class="stat-box figure">
 | 
						|
            <p>Last 31 days (failure rate)</p>
 | 
						|
            <p class="figure-num" id="failRate">?</p>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
    <div class="stat-row">
 | 
						|
        <div class="stat-box" style="height: 400px;">
 | 
						|
            <canvas id="historyLong"></canvas>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
</section>
 | 
						|
 | 
						|
<script src="/static/js/chart.js" defer></script>
 | 
						|
<script src="/static/js/chartjs-adapter-luxon.js" defer></script>
 | 
						|
<script src="/static/js/admin.js" defer></script>
 | 
						|
 | 
						|
</body>
 | 
						|
</html>
 |