first commit

This commit is contained in:
Konstantin
2026-05-30 09:27:58 +03:00
commit de0344d218
2371 changed files with 661486 additions and 0 deletions
@@ -0,0 +1,189 @@
{{ header }}{{ column_left }}
<div id="content">
<div class="page-header">
<div class="container-fluid">
<div class="pull-right">
<button type="submit" form="form-fraud" data-toggle="tooltip" title="{{ button_save }}" class="btn btn-primary"><i class="fa fa-save"></i></button>
<a href="{{ cancel }}" data-toggle="tooltip" title="{{ button_cancel }}" class="btn btn-default"><i class="fa fa-reply"></i></a></div>
<h1>{{ heading_title }}</h1>
<ul class="breadcrumb">
{% for breadcrumb in breadcrumbs %}
<li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
{% endfor %}
</ul>
</div>
</div>
<div class="container-fluid"> {% if error_warning %}
<div class="alert alert-danger alert-dismissible"><i class="fa fa-exclamation-circle"></i> {{ error_warning }}
<button type="button" class="close" data-dismiss="alert">&times;</button>
</div>
{% endif %}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><i class="fa fa-pencil"></i> {{ text_edit }}</h3>
</div>
<div class="panel-body">
<div class="alert alert-info"><i class="fa fa-exclamation-circle"></i> {{ text_signup }}</div>
<form action="{{ action }}" method="post" enctype="multipart/form-data" id="form-fraud" class="form-horizontal">
<div class="form-group">
<label class="col-sm-2 control-label" for="input-status">{{ entry_status }}</label>
<div class="col-sm-10">
<select name="fraud_fraudlabspro_status" id="input-status" class="form-control">
{% if fraud_fraudlabspro_status %}
<option value="1" selected="selected">{{ text_enabled }}</option>
<option value="0">{{ text_disabled }}</option>
{% else %}
<option value="1">{{ text_enabled }}</option>
<option value="0" selected="selected">{{ text_disabled }}</option>
{% endif %}
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="input-key">{{ entry_key }}</label>
<div class="col-sm-10">
<input type="text" name="fraud_fraudlabspro_key" value="{{ fraud_fraudlabspro_key }}" placeholder="{{ entry_key }}" id="input-key" class="form-control" />
{% if error_key %}
<div class="text-danger">{{ error_key }}</div>
{% endif %} </div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="input-score"><span data-toggle="tooltip" title="{{ help_score }}">{{ entry_score }}</span></label>
<div class="col-sm-10">
<input type="text" name="fraud_fraudlabspro_score" value="{{ fraud_fraudlabspro_score }}" placeholder="{{ entry_score }}" id="input-score" class="form-control" />
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="input-order-status"><span data-toggle="tooltip" title="{{ help_order_status }}">{{ entry_order_status }}</span></label>
<div class="col-sm-10">
<select name="fraud_fraudlabspro_order_status_id" id="input-order-status" class="form-control">
{% for order_status in order_statuses %}
{% if order_status.order_status_id == fraud_fraudlabspro_order_status_id %}
<option value="{{ order_status.order_status_id }}" selected="selected">{{ order_status.name }}</option>
{% else %}
<option value="{{ order_status.order_status_id }}">{{ order_status.name }}</option>
{% endif %}
{% endfor %}
</select>
</div>
</div>
<fieldset>
<legend>{{ text_rule_validation }}</legend>
<div class="form-group">
<label class="col-sm-2 control-label" for="input-fraud-review-status"><span data-toggle="tooltip" title="{{ help_review_status }}">{{ entry_review_status }}</span></label>
<div class="col-sm-10">
<select name="fraud_fraudlabspro_review_status_id" id="input-fraud-review-status" class="form-control">
{% for order_status in order_statuses %}
{% if order_status.order_status_id == fraud_fraudlabspro_review_status_id %}
<option value="{{ order_status.order_status_id }}" selected="selected">{{ order_status.name }}</option>
{% else %}
<option value="{{ order_status.order_status_id }}">{{ order_status.name }}</option>
{% endif %}
{% endfor %}
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="input-fraud-approve-status"><span data-toggle="tooltip" title="{{ help_approve_status }}">{{ entry_approve_status }}</span></label>
<div class="col-sm-10">
<select name="fraud_fraudlabspro_approve_status_id" id="input-fraud-approve-status" class="form-control">
{% for order_status in order_statuses %}
{% if order_status.order_status_id == fraud_fraudlabspro_approve_status_id %}
<option value="{{ order_status.order_status_id }}" selected="selected">{{ order_status.name }}</option>
{% else %}
<option value="{{ order_status.order_status_id }}">{{ order_status.name }}</option>
{% endif %}
{% endfor %}
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="input-fraud-reject-status"><span data-toggle="tooltip" title="{{ help_reject_status }}">{{ entry_reject_status }}</span></label>
<div class="col-sm-10">
<select name="fraud_fraudlabspro_reject_status_id" id="input-fraud-reject-status" class="form-control">
{% for order_status in order_statuses %}
{% if order_status.order_status_id == fraud_fraudlabspro_reject_status_id %}
<option value="{{ order_status.order_status_id }}" selected="selected">{{ order_status.name }}</option>
{% else %}
<option value="{{ order_status.order_status_id }}">{{ order_status.name }}</option>
{% endif %}
{% endfor %}
</select>
</div>
</div>
</fieldset>
<fieldset>
<legend>{{ text_testing }}</legend>
<div class="form-group">
<label class="col-sm-2 control-label" for="input-score"><span data-toggle="tooltip" title="{{ help_simulate_ip }}">{{ entry_simulate_ip }}</span></label>
<div class="col-sm-10">
<input type="text" name="fraud_fraudlabspro_simulate_ip" value="{{ fraud_fraudlabspro_simulate_ip }}" placeholder="{{ entry_simulate_ip }}" id="input-score" class="form-control" />
</div>
</div>
</fieldset>
</form>
</div>
</div>
</div>
</div>
{{ footer }}
@@ -0,0 +1,128 @@
<table class="table table-bordered">
<tr>
<td style="text-align:center; background-color:#ab1b1c; border:1px solid #ab1b1c;" colspan="2"><img src="https://www.fraudlabspro.com/images/logo_200.png" alt="FraudLabs Pro" /></td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_transaction_id }}">{{ text_transaction_id }}</span></td>
<td><a href="https://www.fraudlabspro.com/merchant/transaction-details/{{ flp_id }}/" target="_blank">{{ flp_id }}</a></td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_score }}">{{ text_score }}</span></td>
<td><img class="img-responsive" alt="" src="//fraudlabspro.hexa-soft.com/images/fraudscore/fraudlabsproscore{{ flp_score }}.png" /></td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_status }}">{{ text_status }}</span></td>
<td id="flp_status"><span style="font-weight:bold; color: {% if flp_status|lower == 'approve' %} #5cb85c {% elseif flp_status|lower == 'review' %} #f0ad4e {% else %} #d9534f {% endif %};">{{ flp_status }}</span></td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ip_address }}">{{ text_ip_address }}</span></td>
<td>{{ flp_ip_address }}</td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ip_net_speed }}">{{ text_ip_net_speed }}</span></td>
<td>{{ flp_ip_net_speed }}</td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ip_isp_name }}">{{ text_ip_isp_name }}</span></td>
<td>{{ flp_ip_isp_name }}</td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ip_usage_type }}">{{ text_ip_usage_type }}</span></td>
<td>{{ flp_ip_usage_type }}</td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ip_domain }}">{{ text_ip_domain }}</span></td>
<td>{{ flp_ip_domain }}</td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ip_time_zone }}">{{ text_ip_time_zone }}</span></td>
<td>{{ flp_ip_time_zone }}</td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ip_location }}">{{ text_ip_location }}</span></td>
<td>{{ flp_ip_location }}</td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ip_distance }}">{{ text_ip_distance }}</span></td>
<td>{{ flp_ip_distance }}</td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ip_latitude }}">{{ text_ip_latitude }}</span></td>
<td>{{ flp_ip_latitude }}</td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ip_longitude }}">{{ text_ip_longitude }}</span></td>
<td>{{ flp_ip_longitude }}</td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_risk_country }}">{{ text_risk_country }}</span></td>
<td>{{ flp_risk_country }}</td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_free_email }}">{{ text_free_email }}</span></td>
<td>{{ flp_free_email }}</td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ship_forward }}">{{ text_ship_forward }}</span></td>
<td>{{ flp_ship_forward }}</td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_using_proxy }}">{{ text_using_proxy }}</span></td>
<td>{{ flp_using_proxy }}</td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_bin_found }}">{{ text_bin_found }}</span></td>
<td>{{ flp_bin_found }}</td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_email_blacklist }}">{{ text_email_blacklist }}</span></td>
<td>{{ flp_email_blacklist }}</td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_credit_card_blacklist }}">{{ text_credit_card_blacklist }}</span></td>
<td>{{ flp_credit_card_blacklist }}</td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_credits }}">{{ text_credits }}</span></td>
<td>{{ flp_credits }} {{ text_flp_upgrade }}</td>
</tr>
<tr>
<td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_message }}">{{ text_message }}</span></td>
<td>{{ flp_message }}</td>
</tr>
{% if flp_status == 'review' %}
<tr style="background-color: #eee;">
<td id="flp_action" colspan="2">
<form id="review-action" method="post">
<div align="center">
<button type="button" id="button-flp-approve" class="btn btn-primary"><i class="fa fa-check"></i> Approve</button>
<button type="button" id="button-flp-reject" class="btn btn-danger"><i class="fa fa-remove"></i> Reject</button>
</div>
<input type="hidden" id="flp_id" name="flp_id" value="{{ flp_id }}" />
<input type="hidden" id="new_status" name="new_status" value="" />
</form>
<script>
$(document).ready(function(){
$("#button-flp-approve").click(function(){
$("#new_status").val("APPROVE");
$("#review-action").submit();
});
});
$(document).ready(function(){
$("#button-flp-reject").click(function(){
$("#new_status").val("REJECT");
$("#review-action").submit();
});
});
</script>
</td>
</tr>
{% endif %}
</table>
<div>
{{ text_flp_merchant_area }}
</div>
@@ -0,0 +1,176 @@
{{ header }}{{ column_left }}
<div id="content">
<div class="page-header">
<div class="container-fluid">
<div class="pull-right">
<button class="btn btn-primary" data-toggle="tooltip" form="form-fraud" title="{{ button_save }}" type="submit"><i class="fa fa-save"></i></button>
<a class="btn btn-default" data-toggle="tooltip" href="{{ cancel }}" title="{{ button_cancel }}"><i class="fa fa-reply"></i></a></div>
<h1>{{ heading_title }}</h1>
<ul class="breadcrumb">
{% for breadcrumb in breadcrumbs %}
<li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
{% endfor %}
</ul>
</div>
</div>
<div class="container-fluid"> {% if error_warning %}
<div class="alert alert-danger alert-dismissible"><i class="fa fa-exclamation-circle"></i> {{ error_warning }}
<button class="close" data-dismiss="alert" type="button">&times;</button>
</div>
{% endif %}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><i class="fa fa-pencil"></i> {{ text_edit }}</h3>
</div>
<div class="panel-body">
<form action="{{ action }}" method="post" class="form-horizontal" enctype="multipart/form-data" id="form-fraud">
<div class="form-group">
<label class="col-sm-2 control-label" for="input-order-status"><span data-toggle="tooltip" title="{{ help_order_status }}">{{ entry_order_status }}</span></label>
<div class="col-sm-10">
<select name="fraud_ip_order_status_id" id="input-order-status" class="form-control">
{% for order_status in order_statuses %}
{% if order_status.order_status_id == fraud_ip_order_status_id %}
<option selected="selected" value="{{ order_status.order_status_id }}">{{ order_status.name }}</option>
{% else %}
<option value="{{ order_status.order_status_id }}">{{ order_status.name }}</option>
{% endif %}
{% endfor %}
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="input-status"> {{ entry_status }} </label>
<div class="col-sm-10">
<select name="fraud_ip_status" id="input-status" class="form-control">
{% if fraud_ip_status %}
<option selected="selected" value="1"> {{ text_enabled }} </option>
<option value="0"> {{ text_disabled }} </option>
{% else %}
<option value="1"> {{ text_enabled }} </option>
<option selected="selected" value="0"> {{ text_disabled }} </option>
{% endif %}
</select>
</div>
</div>
<fieldset>
<legend> {{ text_ip_add }} </legend>
<div class="form-group required">
<label class="col-sm-2 control-label" for="input-ip"> {{ entry_ip }} </label>
<div class="col-sm-10">
<div class="input-group">
<input class="form-control" id="input-ip" placeholder="{{ entry_ip }}" type="text" value=""/>
<span class="input-group-btn">
<button class="btn btn-primary" data-loading-text="{{ text_loading }}" id="button-ip-add" type="button"> {{ button_ip_add }} </button>
</span> </div>
</div>
</div>
</fieldset>
<br/>
<fieldset>
<legend> {{ text_ip_list }} </legend>
<div id="ip"></div>
</fieldset>
</form>
</div>
</div>
<script type="text/javascript"><!--
$('#ip').delegate('.pagination a', 'click', function(e) {
e.preventDefault();
$('#ip').load(this.href);
});
$('#ip').load('index.php?route=extension/fraud/ip/ip&user_token={{ user_token }}');
$('#button-ip-add').on('click', function() {
$.ajax({
url: 'index.php?route=extension/fraud/ip/addip&user_token={{ user_token }}',
type: 'post',
dataType: 'json',
data: 'ip=' + encodeURIComponent($('#input-ip').val()),
beforeSend: function() {
$('#button-ip-add').button('loading');
},
complete: function() {
$('#button-ip-add').button('reset');
},
success: function(json) {
$('.alert-dismissible').remove();
if (json['error']) {
$('#content > .container-fluid').prepend('<div class="alert alert-danger alert-dismissible"><i class="fa fa-exclamation-circle"></i> ' + json['error'] + ' <button type="button" class="close" data-dismiss="alert">&times;</button></div>');
}
if (json['success']) {
$('#content > .container-fluid').prepend('<div class="alert alert-success alert-dismissible"><i class="fa fa-check-circle"></i> ' + json['success'] + ' <button type="button" class="close" data-dismiss="alert">&times;</button></div>');
$('#ip').load('index.php?route=extension/fraud/ip/ip&user_token={{ user_token }}');
$('#input-ip').val('');
}
},
error: function(xhr, ajaxOptions, thrownError) {
alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
}
});
});
$('#ip').delegate('button', 'click', function() {
var element = this;
$.ajax({
url: 'index.php?route=extension/fraud/ip/removeip&user_token={{ user_token }}',
type: 'post',
dataType: 'json',
data: 'ip=' + encodeURIComponent($(element).val()),
beforeSend: function() {
$(element).button('loading');
},
complete: function() {
$(element).button('reset');
},
success: function(json) {
$('.alert-dismissible').remove();
if (json['error']) {
$('#content > .container-fluid').prepend('<div class="alert alert-danger alert-dismissible"><i class="fa fa-exclamation-circle"></i> ' + json['error'] + ' <button type="button" class="close" data-dismiss="alert">&times;</button></div>');
}
if (json['success']) {
$('#content > .container-fluid').prepend('<div class="alert alert-success alert-dismissible"><i class="fa fa-check-circle"></i> ' + json['success'] + ' <button type="button" class="close" data-dismiss="alert">&times;</button></div>');
$('#ip').load('index.php?route=extension/fraud/ip/ip&user_token={{ user_token }}');
}
},
error: function(xhr, ajaxOptions, thrownError) {
alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
}
});
});
//--></script>
</div>
{{ footer }}
@@ -0,0 +1,32 @@
<div class="table-responsive">
<table class="table table-bordered table-hover">
<thead>
<tr>
<td class="text-left">{{ column_ip }}</td>
<td class="text-right">{{ column_total }}</td>
<td class="text-left">{{ column_date_added }}</td>
<td class="text-right">{{ column_action }}</td>
</tr>
</thead>
<tbody>
{% if ips %}
{% for ip in ips %}
<tr>
<td class="text-left"><a href="http://www.geoiptool.com/en/?IP={{ ip.ip }}" target="_blank">{{ ip.ip }}</a></td>
<td class="text-right"><a href="{{ ip.filter_ip }}" target="_blank">{{ ip.total }}</a></td>
<td class="text-left">{{ ip.date_added }}</td>
<td class="text-right"><button type="button" value="{{ ip.ip }}" data-toggle="tooltip" title="{{ button_remove }}" data-loading-text="{{ text_loading }}" class="btn btn-danger"><i class="fa fa-minus-circle"></i></button></td>
</tr>
{% endfor %}
{% else %}
<tr>
<td class="text-center" colspan="4">{{ text_no_results }}</td>
</tr>
{% endif %}
</tbody>
</table>
</div>
<div class="row">
<div class="col-sm-6 text-left">{{ pagination }}</div>
<div class="col-sm-6 text-right">{{ results }}</div>
</div>
@@ -0,0 +1,77 @@
{{ header }}{{ column_left }}
<div id="content">
<div class="page-header">
<div class="container-fluid">
<div class="pull-right">
<button type="submit" form="form-fraud" data-toggle="tooltip" title="{{ button_save }}" class="btn btn-primary"><i class="fa fa-save"></i></button>
<a href="{{ cancel }}" data-toggle="tooltip" title="{{ button_cancel }}" class="btn btn-default"><i class="fa fa-reply"></i></a></div>
<h1>{{ heading_title }}</h1>
<ul class="breadcrumb">
{% for breadcrumb in breadcrumbs %}
<li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
{% endfor %}
</ul>
</div>
</div>
<div class="container-fluid">
{% if error_warning %}
<div class="alert alert-danger alert-dismissible"><i class="fa fa-exclamation-circle"></i> {{ error_warning }}
<button type="button" class="close" data-dismiss="alert">&times;</button>
</div>
{% endif %}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><i class="fa fa-pencil"></i> {{ text_edit }}</h3>
</div>
<div class="panel-body">
<div class="alert alert-info"><i class="fa fa-exclamation-circle"></i> {{ text_signup }}</div>
<form action="{{ action }}" method="post" enctype="multipart/form-data" id="form-fraud" class="form-horizontal">
<div class="form-group">
<label class="col-sm-2 control-label" for="input-key">{{ entry_key }}</label>
<div class="col-sm-10">
<input type="text" name="fraud_maxmind_key" value="{{ fraud_maxmind_key }}" placeholder="{{ entry_key }}" id="input-key" class="form-control" />
{% if error_key %}
<div class="text-danger">{{ error_key }}</div>
{% endif %}
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="input-score"><span data-toggle="tooltip" title="{{ help_score }}">{{ entry_score }}</span></label>
<div class="col-sm-10">
<input type="text" name="fraud_maxmind_score" value="{{ fraud_maxmind_score }}" placeholder="{{ entry_score }}" id="input-score" class="form-control" />
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="input-order-status"><span data-toggle="tooltip" title="{{ help_order_status }}">{{ entry_order_status }}</span></label>
<div class="col-sm-10">
<select name="fraud_maxmind_order_status_id" id="input-order-status" class="form-control">
{% for order_status in order_statuses %}
{% if order_status.order_status_id == fraud_maxmind_order_status_id %}
<option value="{{ order_status.order_status_id }}" selected="selected">{{ order_status.name }}</option>
{% else %}
<option value="{{ order_status.order_status_id }}">{{ order_status.name }}</option>
{% endif %}
{% endfor %}
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="input-status">{{ entry_status }}</label>
<div class="col-sm-10">
<select name="fraud_maxmind_status" id="input-status" class="form-control">
{% if fraud_maxmind_status %}
<option value="1" selected="selected">{{ text_enabled }}</option>
<option value="0">{{ text_disabled }}</option>
{% else %}
<option value="1">{{ text_enabled }}</option>
<option value="0" selected="selected">{{ text_disabled }}</option>
{% endif %}
</select>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
{{ footer }}
@@ -0,0 +1,302 @@
<table class="table table-bordered">
{% if country_match %}
<tr>
<td>{{ text_country_match }}</td>
<td>{{ country_match }}</td>
</tr>
{% endif %}
{% if country_code %}
<tr>
<td>{{ text_country_code }}</td>
<td>{{ country_code }}</td>
</tr>
{% endif %}
{% if high_risk_country %}
<tr>
<td>{{ text_high_risk_country }}</td>
<td>{{ high_risk_country }}</td>
</tr>
{% endif %}
{% if distance %}
<tr>
<td>{{ text_distance }}</td>
<td>{{ distance }}</td>
</tr>
{% endif %}
{% if ip_region %}
<tr>
<td>{{ text_ip_region }}</td>
<td>{{ ip_region }}</td>
</tr>
{% endif %}
{% if ip_city %}
<tr>
<td>{{ text_ip_city }}</td>
<td>{{ ip_city }}</td>
</tr>
{% endif %}
{% if ip_latitude %}
<tr>
<td>{{ text_ip_latitude }}</td>
<td>{{ ip_latitude }}</td>
</tr>
{% endif %}
{% if ip_longitude %}
<tr>
<td>{{ text_ip_longitude }}</td>
<td>{{ ip_longitude }}</td>
</tr>
{% endif %}
{% if ip_isp %}
<tr>
<td>{{ text_ip_isp }}</td>
<td>{{ ip_isp }}</td>
</tr>
{% endif %}
{% if ip_org %}
<tr>
<td>{{ text_ip_org }}</td>
<td>{{ ip_org }}</td>
</tr>
{% endif %}
{% if ip_asnum %}
<tr>
<td>{{ text_ip_asnum }}</td>
<td>{{ ip_asnum }}</td>
</tr>
{% endif %}
{% if ip_user_type %}
<tr>
<td>{{ text_ip_user_type }}</td>
<td>{{ ip_user_type }}</td>
</tr>
{% endif %}
{% if ip_country_confidence %}
<tr>
<td>{{ text_ip_country_confidence }}</td>
<td>{{ ip_country_confidence }}</td>
</tr>
{% endif %}
{% if ip_region_confidence %}
<tr>
<td>{{ text_ip_region_confidence }}</td>
<td>{{ ip_region_confidence }}</td>
</tr>
{% endif %}
{% if ip_city_confidence %}
<tr>
<td>{{ text_ip_city_confidence }}</td>
<td>{{ ip_city_confidence }}</td>
</tr>
{% endif %}
{% if ip_postal_confidence %}
<tr>
<td>{{ text_ip_postal_confidence }}</td>
<td>{{ ip_postal_confidence }}</td>
</tr>
{% endif %}
{% if ip_postal_code %}
<tr>
<td>{{ text_ip_postal_code }}</td>
<td>{{ ip_postal_code }}</td>
</tr>
{% endif %}
{% if ip_accuracy_radius %}
<tr>
<td>{{ text_ip_accuracy_radius }}</td>
<td>{{ ip_accuracy_radius }}</td>
</tr>
{% endif %}
{% if ip_net_speed_cell %}
<tr>
<td>{{ text_ip_net_speed_cell }}</td>
<td>{{ ip_net_speed_cell }}</td>
</tr>
{% endif %}
{% if ip_metro_code %}
<tr>
<td>{{ text_ip_metro_code }}</td>
<td>{{ ip_metro_code }}</td>
</tr>
{% endif %}
{% if ip_area_code %}
<tr>
<td>{{ text_ip_area_code }}</td>
<td>{{ ip_area_code }}</td>
</tr>
{% endif %}
{% if ip_time_zone %}
<tr>
<td>{{ text_ip_time_zone }}</td>
<td>{{ ip_time_zone }}</td>
</tr>
{% endif %}
{% if ip_region_name %}
<tr>
<td>{{ text_ip_region_name }}</td>
<td>{{ ip_region_name }}</td>
</tr>
{% endif %}
{% if ip_domain %}
<tr>
<td>{{ text_ip_domain }}</td>
<td>{{ ip_domain }}</td>
</tr>
{% endif %}
{% if ip_country_name %}
<tr>
<td>{{ text_ip_country_name }}</td>
<td>{{ ip_country_name }}</td>
</tr>
{% endif %}
{% if ip_continent_code %}
<tr>
<td>{{ text_ip_continent_code }}</td>
<td>{{ ip_continent_code }}</td>
</tr>
{% endif %}
{% if ip_corporate_proxy %}
<tr>
<td>{{ text_ip_corporate_proxy }}</td>
<td>{{ ip_corporate_proxy }}</td>
</tr>
{% endif %}
{% if anonymous_proxy %}
<tr>
<td>{{ text_anonymous_proxy }}</td>
<td>{{ anonymous_proxy }}</td>
</tr>
{% endif %}
{% if proxy_score %}
<tr>
<td>{{ text_proxy_score }}</td>
<td>{{ proxy_score }}</td>
</tr>
{% endif %}
{% if is_trans_proxy %}
<tr>
<td>{{ text_is_trans_proxy }}</td>
<td>{{ is_trans_proxy }}</td>
</tr>
{% endif %}
{% if free_mail %}
<tr>
<td>{{ text_free_mail }}</td>
<td>{{ free_mail }}</td>
</tr>
{% endif %}
{% if carder_email %}
<tr>
<td>{{ text_carder_email }}</td>
<td>{{ carder_email }}</td>
</tr>
{% endif %}
{% if high_risk_username %}
<tr>
<td>{{ text_high_risk_username }}</td>
<td>{{ high_risk_username }}</td>
</tr>
{% endif %}
{% if high_risk_password %}
<tr>
<td>{{ text_high_risk_password }}</td>
<td>{{ high_risk_password }}</td>
</tr>
{% endif %}
{% if bin_match %}
<tr>
<td>{{ text_bin_match }}</td>
<td>{{ bin_match }}</td>
</tr>
{% endif %}
{% if bin_country %}
<tr>
<td>{{ text_bin_country }}</td>
<td>{{ bin_country }}</td>
</tr>
{% endif %}
{% if bin_name_match %}
<tr>
<td>{{ text_bin_name_match }}</td>
<td>{{ bin_name_match }}</td>
</tr>
{% endif %}
{% if bin_name %}
<tr>
<td>{{ text_bin_name }}</td>
<td>{{ bin_name }}</td>
</tr>
{% endif %}
{% if bin_phone_match %}
<tr>
<td>{{ text_bin_phone_match }}</td>
<td>{{ bin_phone_match }}</td>
</tr>
{% endif %}
{% if bin_phone %}
<tr>
<td>{{ text_bin_phone }}</td>
<td>{{ bin_phone }}</td>
</tr>
{% endif %}
{% if customer_phone_in_billing_location %}
<tr>
<td>{{ text_customer_phone_in_billing_location }}</td>
<td>{{ customer_phone_in_billing_location }}</td>
</tr>
{% endif %}
{% if ship_forward %}
<tr>
<td>{{ text_ship_forward }}</td>
<td>{{ ship_forward }}</td>
</tr>
{% endif %}
{% if city_postal_match %}
<tr>
<td>{{ text_city_postal_match }}</td>
<td>{{ city_postal_match }}</td>
</tr>
{% endif %}
{% if ship_city_postal_match %}
<tr>
<td>{{ text_ship_city_postal_match }}</td>
<td>{{ ship_city_postal_match }}</td>
</tr>
{% endif %}
{% if score %}
<tr>
<td>{{ text_score }}</td>
<td>{{ score }}</td>
</tr>
{% endif %}
{% if explanation %}
<tr>
<td>{{ text_explanation }}</td>
<td>{{ explanation }}</td>
</tr>
{% endif %}
{% if risk_score %}
<tr>
<td>{{ text_risk_score }}</td>
<td>{{ risk_score }}</td>
</tr>
{% endif %}
{% if queries_remaining %}
<tr>
<td>{{ text_queries_remaining }}</td>
<td>{{ queries_remaining }}</td>
</tr>
{% endif %}
{% if maxmind_id %}
<tr>
<td>{{ text_maxmind_id }}</td>
<td>{{ maxmind_id }}</td>
</tr>
{% endif %}
{% if error %}
<tr>
<td>{{ text_error }}</td>
<td>{{ error }}</td>
</tr>
{% endif %}
</table>