24 lines
708 B
PHP
24 lines
708 B
PHP
<?php include('config.php'); ?>
|
|
<?php include('locale/' . $lang . '.php'); ?>
|
|
<!DOCTYPE html>
|
|
<html lang="de-de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<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>
|