mirror of
https://github.com/RaspbianFrance/raspisms.git
synced 2025-04-22 09:26:27 +02:00
add page for calls
This commit is contained in:
parent
41c3b3b86e
commit
c63f3bebba
9 changed files with 323 additions and 45 deletions
|
@ -108,7 +108,24 @@ jQuery(document).ready(function ()
|
|||
} else {
|
||||
html += '<div>Non disponible.</div>';
|
||||
}
|
||||
|
||||
html += '<br/>';
|
||||
html += '<div class="bold">Notification d\'appel entrant : </div>';
|
||||
|
||||
if (row.callback_inbound_call) {
|
||||
html += '<div><code>' + row.callback_inbound_call + '</code></div>';
|
||||
} else {
|
||||
html += '<div>Non disponible.</div>';
|
||||
}
|
||||
|
||||
html += '<br/>';
|
||||
html += '<div class="bold">Notification de fin d\'appel : </div>';
|
||||
console.log(row);
|
||||
if (row.callback_end_call) {
|
||||
html += '<div><code>' + row.callback_end_call + '</code></div>';
|
||||
} else {
|
||||
html += '<div>Non disponible.</div>';
|
||||
}
|
||||
|
||||
return html;
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue