MT#11667 Add external filter by direction for calls

Change-Id: Ie0c649fb6e12a54c3ea0f142c1f7602de07b8606
changes/56/1956/2
Irina Peshinskaya 10 years ago
parent 7c9f65a2ef
commit 265d0b6e91

@ -9,6 +9,18 @@
<div class="ngcp-separator"></div>
<select id="Calls_table_external_filter">
<option value="">Show all calls</option>
<option value="outcoming">Show only outgoing calls</option>
<option value="incoming">Show incoming calls</option>
</select>
<script>
$('#Calls_table_external_filter').change( function() { $('#Calls_table').dataTable().fnFilter( $(this).val() ); } );
</script>
<div class="ngcp-separator"></div>
[%
helper.name = 'Calls';
helper.dt_columns = calls_dt_columns;

Loading…
Cancel
Save