change table

This commit is contained in:
Ibnu Maksum 2022-11-17 12:36:32 +07:00
parent 1afa84e36f
commit 7651697ae7
No known key found for this signature in database
GPG Key ID: 7FC82848810579E5
9 changed files with 73 additions and 70 deletions

View File

@ -2890,8 +2890,8 @@
0DCF;SINHALA VOWEL SIGN AELA-PILLA;Mc;0;L;;;;;N;;;;; 0DCF;SINHALA VOWEL SIGN AELA-PILLA;Mc;0;L;;;;;N;;;;;
0DD0;SINHALA VOWEL SIGN KETTI AEDA-PILLA;Mc;0;L;;;;;N;;;;; 0DD0;SINHALA VOWEL SIGN KETTI AEDA-PILLA;Mc;0;L;;;;;N;;;;;
0DD1;SINHALA VOWEL SIGN DIGA AEDA-PILLA;Mc;0;L;;;;;N;;;;; 0DD1;SINHALA VOWEL SIGN DIGA AEDA-PILLA;Mc;0;L;;;;;N;;;;;
0DD2;SINHALA VOWEL SIGN KETTI IS-PILLA;Mn;0;NSM;;;;;N;;;;; 0DD2;SINHALA VOWEL SIGN KETTI table-PILLA;Mn;0;NSM;;;;;N;;;;;
0DD3;SINHALA VOWEL SIGN DIGA IS-PILLA;Mn;0;NSM;;;;;N;;;;; 0DD3;SINHALA VOWEL SIGN DIGA table-PILLA;Mn;0;NSM;;;;;N;;;;;
0DD4;SINHALA VOWEL SIGN KETTI PAA-PILLA;Mn;0;NSM;;;;;N;;;;; 0DD4;SINHALA VOWEL SIGN KETTI PAA-PILLA;Mn;0;NSM;;;;;N;;;;;
0DD6;SINHALA VOWEL SIGN DIGA PAA-PILLA;Mn;0;NSM;;;;;N;;;;; 0DD6;SINHALA VOWEL SIGN DIGA PAA-PILLA;Mn;0;NSM;;;;;N;;;;;
0DD8;SINHALA VOWEL SIGN GAETTA-PILLA;Mc;0;L;;;;;N;;;;; 0DD8;SINHALA VOWEL SIGN GAETTA-PILLA;Mc;0;L;;;;;N;;;;;

View File

@ -24,7 +24,7 @@
</div>&nbsp; </div>&nbsp;
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-bordered table-striped"> <table class="table table-bordered table-striped table-condensed">
<thead> <thead>
<tr> <tr>
<th>{$_L['Plan_Name']}</th> <th>{$_L['Plan_Name']}</th>

View File

@ -1,60 +1,64 @@
{include file="sections/header.tpl"} {include file="sections/header.tpl"}
<!-- pool -->
<div class="row"> <div class="row">
<div class="col-sm-12"> <div class="col-sm-12">
<div class="panel panel-hovered mb20 panel-primary"> <div class="panel panel-hovered mb20 panel-primary">
<div class="panel-heading">{$_L['Pool']}</div> <div class="panel-heading">{$_L['Pool']}</div>
<div class="panel-body"> <div class="panel-body">
<div class="md-whiteframe-z1 mb20 text-center" style="padding: 15px"> <div class="md-whiteframe-z1 mb20 text-center" style="padding: 15px">
<div class="col-md-8"> <div class="col-md-8">
<form id="site-search" method="post" action="{$_url}pool/list/"> <form id="site-search" method="post" action="{$_url}pool/list/">
<div class="input-group"> <div class="input-group">
<div class="input-group-addon"> <div class="input-group-addon">
<span class="fa fa-search"></span> <span class="fa fa-search"></span>
</div> </div>
<input type="text" name="name" class="form-control" placeholder="{$_L['Search_by_Name']}..."> <input type="text" name="name" class="form-control"
<div class="input-group-btn"> placeholder="{$_L['Search_by_Name']}...">
<button class="btn btn-success">{$_L['Search']}</button> <div class="input-group-btn">
</div> <button class="btn btn-success">{$_L['Search']}</button>
</div> </div>
</form> </div>
</div> </form>
<div class="col-md-4"> </div>
<a href="{$_url}pool/add" class="btn btn-primary btn-block waves-effect"><i class="ion ion-android-add"> </i> {$_L['New_Pool']}</a> <div class="col-md-4">
</div>&nbsp; <a href="{$_url}pool/add" class="btn btn-primary btn-block waves-effect"><i
</div> class="ion ion-android-add"> </i> {$_L['New_Pool']}</a>
<div class="table-responsive"> </div>&nbsp;
<table class="table table-bordered table-striped"> </div>
<thead> <div class="table-responsive">
<tr> <table class="table table-bordered table-striped table-condensed">
<th>#</th> <thead>
<th>{$_L['Pool_Name']}</th> <tr>
<th>{$_L['Range_IP']}</th> <th>#</th>
<th>{$_L['Routers']}</th> <th>{$_L['Pool_Name']}</th>
<th>{$_L['Manage']}</th> <th>{$_L['Range_IP']}</th>
</tr> <th>{$_L['Routers']}</th>
</thead> <th>{$_L['Manage']}</th>
<tbody> </tr>
{$no = 1} </thead>
{foreach $d as $ds} <tbody>
<tr> {$no = 1}
<td align="center">{$no++}</td> {foreach $d as $ds}
<td>{$ds['pool_name']}</td> <tr>
<td>{$ds['range_ip']}</td> <td align="center">{$no++}</td>
<td>{$ds['routers']}</td> <td>{$ds['pool_name']}</td>
<td align="center"> <td>{$ds['range_ip']}</td>
<a href="{$_url}pool/edit/{$ds['id']}" class="btn btn-warning btn-sm">{$_L['Edit']}</a> <td>{$ds['routers']}</td>
<a href="{$_url}pool/delete/{$ds['id']}" id="{$ds['id']}" class="btn btn-danger btn-sm cdelete">{$_L['Delete']}</a> <td align="center">
</td> <a href="{$_url}pool/edit/{$ds['id']}"
</tr> class="btn btn-warning btn-xs">{$_L['Edit']}</a>
{/foreach} <a href="{$_url}pool/delete/{$ds['id']}" id="{$ds['id']}"
</tbody> class="btn btn-danger btn-xs">{$_L['Delete']}</a>
</table> </td>
</div> </tr>
{$paginator['contents']} {/foreach}
</div> </tbody>
</div> </table>
</div> </div>
</div> {$paginator['contents']}
</div>
</div>
</div>
</div>
{include file="sections/footer.tpl"} {include file="sections/footer.tpl"}

View File

@ -24,7 +24,7 @@
</div>&nbsp; </div>&nbsp;
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-bordered table-striped"> <table class="table table-bordered table-striped table-condensed">
<thead> <thead>
<tr> <tr>
<th>{$_L['Plan_Name']}</th> <th>{$_L['Plan_Name']}</th>

View File

@ -24,7 +24,7 @@
</div>&nbsp; </div>&nbsp;
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table id="datatable" class="table table-bordered table-striped"> <table id="datatable" class="table table-bordered table-striped table-condensed">
<thead> <thead>
<tr> <tr>
<th>{$_L['Username']}</th> <th>{$_L['Username']}</th>
@ -48,8 +48,8 @@
<td>{$ds['method']}</td> <td>{$ds['method']}</td>
<td>{$ds['routers']}</td> <td>{$ds['routers']}</td>
<td> <td>
<a href="{$_url}prepaid/edit/{$ds['id']}" class="btn btn-warning btn-sm">{$_L['Edit']}</a> <a href="{$_url}prepaid/edit/{$ds['id']}" class="btn btn-warning btn-xs">{$_L['Edit']}</a>
<a href="{$_url}prepaid/delete/{$ds['id']}" id="{$ds['id']}" class="btn btn-danger btn-sm cdelete">{$_L['Delete']}</a> {* <a href="{$_url}prepaid/delete/{$ds['id']}" id="{$ds['id']}" class="btn btn-danger btn-xs">{$_L['Delete']}</a> *}
</td> </td>
</tr> </tr>
{/foreach} {/foreach}

View File

@ -24,7 +24,7 @@
<div id="printable"> <div id="printable">
<h4>{$_L['All_Transactions_at_Date']}: {date($_c['date_format'], strtotime($mdate))}</h4> <h4>{$_L['All_Transactions_at_Date']}: {date($_c['date_format'], strtotime($mdate))}</h4>
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-bordered is-condensed table-bordered" style="background: #ffffff"> <table class="table table-bordered table-condensed table-bordered" style="background: #ffffff">
<th class="text-center">{$_L['Username']}</th> <th class="text-center">{$_L['Username']}</th>
<th class="text-center">{$_L['Plan_Name']}</th> <th class="text-center">{$_L['Plan_Name']}</th>
<th class="text-center">{$_L['Type']}</th> <th class="text-center">{$_L['Type']}</th>

View File

@ -24,7 +24,7 @@
<div id="printable"> <div id="printable">
<h4>{$_L['All_Transactions_at_Date']}: {date( $_c['date_format'], strtotime($fdate))} - {date( $_c['date_format'], strtotime($tdate))}</h4> <h4>{$_L['All_Transactions_at_Date']}: {date( $_c['date_format'], strtotime($fdate))} - {date( $_c['date_format'], strtotime($tdate))}</h4>
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-bordered is-condensed table-bordered" style="background: #ffffff"> <table class="table table-bordered table-condensed table-striped " style="background: #ffffff">
<th class="text-center">{$_L['Username']}</th> <th class="text-center">{$_L['Username']}</th>
<th class="text-center">{$_L['Plan_Name']}</th> <th class="text-center">{$_L['Plan_Name']}</th>
<th class="text-center">{$_L['Type']}</th> <th class="text-center">{$_L['Type']}</th>

View File

@ -28,7 +28,7 @@
</div>&nbsp; </div>&nbsp;
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-bordered table-striped"> <table class="table table-bordered table-striped table-condensed">
<thead> <thead>
<tr> <tr>
<th>{$_L['Router_Name']}</th> <th>{$_L['Router_Name']}</th>
@ -49,7 +49,7 @@
<td>{if $ds['enabled'] == 1}Enabled{else}Disabled{/if}</td> <td>{if $ds['enabled'] == 1}Enabled{else}Disabled{/if}</td>
<td> <td>
<a href="{$_url}routers/edit/{$ds['id']}" <a href="{$_url}routers/edit/{$ds['id']}"
class="btn btn-info btn-sm btn-block">{$_L['Edit']}</a> class="btn btn-info btn-xs btn-block">{$_L['Edit']}</a>
</td> </td>
</tr> </tr>
{/foreach} {/foreach}

View File

@ -1 +0,0 @@
"use strict";Array.from(document.getElementsByClassName("menu is-menu-main")).forEach(function(e){Array.from(e.getElementsByClassName("has-dropdown-icon")).forEach(function(e){e.addEventListener("click",function(e){var t=e.currentTarget.getElementsByClassName("dropdown-icon")[0].getElementsByClassName("mdi")[0];e.currentTarget.parentNode.classList.toggle("is-active"),t.classList.toggle("mdi-plus"),t.classList.toggle("mdi-minus")})})}),Array.from(document.getElementsByClassName("jb-aside-mobile-toggle")).forEach(function(e){e.addEventListener("click",function(e){e=e.currentTarget.getElementsByClassName("icon")[0].getElementsByClassName("mdi")[0];document.documentElement.classList.toggle("has-aside-mobile-expanded"),e.classList.toggle("mdi-forwardburger"),e.classList.toggle("mdi-backburger")})}),Array.from(document.getElementsByClassName("jb-navbar-menu-toggle")).forEach(function(e){e.addEventListener("click",function(e){var t=e.currentTarget.getElementsByClassName("icon")[0].getElementsByClassName("mdi")[0];document.getElementById(e.currentTarget.getAttribute("data-target")).classList.toggle("is-active"),t.classList.toggle("mdi-dots-vertical"),t.classList.toggle("mdi-close")})}),Array.from(document.getElementsByClassName("jb-modal")).forEach(function(e){e.addEventListener("click",function(e){e=e.currentTarget.getAttribute("data-target");document.getElementById(e).classList.add("is-active"),document.documentElement.classList.add("is-clipped")})}),Array.from(document.getElementsByClassName("jb-modal-close")).forEach(function(e){e.addEventListener("click",function(e){e.currentTarget.closest(".modal").classList.remove("is-active"),document.documentElement.classList.remove("is-clipped")})}),Array.from(document.getElementsByClassName("jb-notification-dismiss")).forEach(function(e){e.addEventListener("click",function(e){e.currentTarget.closest(".notification").classList.add("is-hidden")})});