|
@@ -184,7 +184,7 @@
|
|
|
|
|
|
//show the content
|
|
|
echo "<div class='action_bar' id='action_bar'>\n";
|
|
|
- echo " <div class='heading'><b>".$text['title-dialplan_tools']." (".$num_rows.")</b></div>\n";
|
|
|
+ echo " <div class='heading'><b>".$text['title-dialplan_tools']."</b><div class='count'>".number_format($num_rows)."</div></div>\n";
|
|
|
echo " <div class='actions'>\n";
|
|
|
if (permission_exists('dialplan_tool_add')) {
|
|
|
echo button::create(['type'=>'button','label'=>$text['button-add'],'icon'=>$_SESSION['theme']['button_icon_add'],'id'=>'btn_add','name'=>'btn_add','link'=>'dialplan_tool_edit.php']);
|
|
@@ -235,6 +235,7 @@
|
|
|
echo "<input type='hidden' id='action' name='action' value=''>\n";
|
|
|
echo "<input type='hidden' name='search' value=\"".escape($search ?? null)."\">\n";
|
|
|
|
|
|
+ echo "<div class='card'>\n";
|
|
|
echo "<table class='list'>\n";
|
|
|
echo "<tr class='list-header'>\n";
|
|
|
if (permission_exists('dialplan_tool_add') || permission_exists('dialplan_tool_edit') || permission_exists('dialplan_tool_delete')) {
|
|
@@ -304,6 +305,7 @@
|
|
|
}
|
|
|
|
|
|
echo "</table>\n";
|
|
|
+ echo "</div>\n";
|
|
|
echo "<br />\n";
|
|
|
echo "<div align='center'>".$paging_controls."</div>\n";
|
|
|
echo "<input type='hidden' name='".$token['name']."' value='".$token['hash']."'>\n";
|