<!-- DataTables addon -->
<link rel="stylesheet" href="/assets/js/DataTables/css/jquery.dataTables.min.css" />
<script src="/assets/js/DataTables/js/jquery.dataTables.js"></script>
<!-- Autocomplete Combo Box -->
<link rel="stylesheet" href="/assets/css/addon/autocomplete-combobox.css" />
<script src="/assets/js/addon/autocomplete-combobox.js"></script>
<h1>Rate Deck Management</h1>
<hr />
<br />
<form method="POST">
Carrier: <select name="data[carrier_id]" id="carrierList"></select><br /><br />
<button id="add_group">Add Rate Deck</button>
<br />
<br />
<table id="rTable" class="display">
<thead>
<tr>
<th>Rate Deck ID</th>
<th>Carrier</th>
<th>Name</th>
<th>Notes</th>
</tr>
</thead>
</table>
</form>
<div id="dialog-edit-rate-deck" title="Edit Rate Deck">
<table id="rdTable" class="display">
<thead>
<tr>
<th>Prefix</th>
<th>Inter</th>
<th>Intra</th>
</tr>
</thead>
</table>
<form id="edit_rate_deck_form" enctype="multipart/form-data">
<input type="hidden" name="data[req]" value="load_rate_deck" />
<input type="hidden" name="data[rid]" id="e_rid" />
<input type="file" name="data_file" id="data_file" />
</form>
</div>
<script src="/assets/js/admin/voip/rate_decks.js"></script>