asterisk-queue-manager/index.php

24 lines
708 B
PHP
Raw Permalink Normal View History

2023-07-31 14:50:26 +02:00
<?php include('config.php'); ?>
<?php include('locale/' . $lang . '.php'); ?>
<!DOCTYPE html>
<html lang="de-de">
<head>
<meta charset="utf-8">
2023-07-31 18:49:44 +02:00
<meta name="viewport" content="width=device-width, initial-scale=1">
2023-07-31 14:50:26 +02:00
<title>Asterisk Queue Manager</title>
<link rel="stylesheet" href="css/<?php echo $style; ?>.css">
<link rel="icon" type="image/png" href="img/favicon.png">
<script src="js/app.js"></script>
</head>
<body>
<h2><?php echo $locale['phones']; ?>:</h2>
<ul id="peers"></ul>
<h2><?php echo $locale['agents'] . ' ' . $locale['in_queue']; ?>:</h2>
<ul id="queuemembers"></ul>
<h2><?php echo $locale['calls'] . ' ' . $locale['in_queue']; ?>:</h2>
<ul id="queuecalls"></ul>
</body>
</html>