fraudlabspro_info.twig (5796B)
1 <table class="table table-bordered"> 2 <tr> 3 <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> 4 </tr> 5 <tr> 6 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_transaction_id }}">{{ text_transaction_id }}</span></td> 7 <td><a href="https://www.fraudlabspro.com/merchant/transaction-details/{{ flp_id }}/" target="_blank">{{ flp_id }}</a></td> 8 </tr> 9 <tr> 10 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_score }}">{{ text_score }}</span></td> 11 <td><img class="img-responsive" alt="" src="//fraudlabspro.hexa-soft.com/images/fraudscore/fraudlabsproscore{{ flp_score }}.png" /></td> 12 </tr> 13 <tr> 14 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_status }}">{{ text_status }}</span></td> 15 <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> 16 </tr> 17 <tr> 18 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ip_address }}">{{ text_ip_address }}</span></td> 19 <td>{{ flp_ip_address }}</td> 20 </tr> 21 <tr> 22 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ip_net_speed }}">{{ text_ip_net_speed }}</span></td> 23 <td>{{ flp_ip_net_speed }}</td> 24 </tr> 25 <tr> 26 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ip_isp_name }}">{{ text_ip_isp_name }}</span></td> 27 <td>{{ flp_ip_isp_name }}</td> 28 </tr> 29 <tr> 30 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ip_usage_type }}">{{ text_ip_usage_type }}</span></td> 31 <td>{{ flp_ip_usage_type }}</td> 32 </tr> 33 <tr> 34 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ip_domain }}">{{ text_ip_domain }}</span></td> 35 <td>{{ flp_ip_domain }}</td> 36 </tr> 37 <tr> 38 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ip_time_zone }}">{{ text_ip_time_zone }}</span></td> 39 <td>{{ flp_ip_time_zone }}</td> 40 </tr> 41 <tr> 42 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ip_location }}">{{ text_ip_location }}</span></td> 43 <td>{{ flp_ip_location }}</td> 44 </tr> 45 <tr> 46 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ip_distance }}">{{ text_ip_distance }}</span></td> 47 <td>{{ flp_ip_distance }}</td> 48 </tr> 49 <tr> 50 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ip_latitude }}">{{ text_ip_latitude }}</span></td> 51 <td>{{ flp_ip_latitude }}</td> 52 </tr> 53 <tr> 54 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ip_longitude }}">{{ text_ip_longitude }}</span></td> 55 <td>{{ flp_ip_longitude }}</td> 56 </tr> 57 <tr> 58 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_risk_country }}">{{ text_risk_country }}</span></td> 59 <td>{{ flp_risk_country }}</td> 60 </tr> 61 <tr> 62 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_free_email }}">{{ text_free_email }}</span></td> 63 <td>{{ flp_free_email }}</td> 64 </tr> 65 <tr> 66 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_ship_forward }}">{{ text_ship_forward }}</span></td> 67 <td>{{ flp_ship_forward }}</td> 68 </tr> 69 <tr> 70 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_using_proxy }}">{{ text_using_proxy }}</span></td> 71 <td>{{ flp_using_proxy }}</td> 72 </tr> 73 <tr> 74 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_bin_found }}">{{ text_bin_found }}</span></td> 75 <td>{{ flp_bin_found }}</td> 76 </tr> 77 <tr> 78 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_email_blacklist }}">{{ text_email_blacklist }}</span></td> 79 <td>{{ flp_email_blacklist }}</td> 80 </tr> 81 <tr> 82 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_credit_card_blacklist }}">{{ text_credit_card_blacklist }}</span></td> 83 <td>{{ flp_credit_card_blacklist }}</td> 84 </tr> 85 <tr> 86 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_credits }}">{{ text_credits }}</span></td> 87 <td>{{ flp_credits }} {{ text_flp_upgrade }}</td> 88 </tr> 89 <tr> 90 <td><span data-toggle="tooltip" data-container="#tab-general" title="{{ help_message }}">{{ text_message }}</span></td> 91 <td>{{ flp_message }}</td> 92 </tr> 93 94 95 {% if flp_status == 'review' %} 96 <tr style="background-color: #eee;"> 97 <td id="flp_action" colspan="2"> 98 <form id="review-action" method="post"> 99 <div align="center"> 100 <button type="button" id="button-flp-approve" class="btn btn-primary"><i class="fa fa-check"></i> Approve</button> 101 <button type="button" id="button-flp-reject" class="btn btn-danger"><i class="fa fa-remove"></i> Reject</button> 102 </div> 103 <input type="hidden" id="flp_id" name="flp_id" value="{{ flp_id }}" /> 104 <input type="hidden" id="new_status" name="new_status" value="" /> 105 </form> 106 107 <script> 108 $(document).ready(function(){ 109 $("#button-flp-approve").click(function(){ 110 $("#new_status").val("APPROVE"); 111 $("#review-action").submit(); 112 }); 113 }); 114 115 $(document).ready(function(){ 116 $("#button-flp-reject").click(function(){ 117 $("#new_status").val("REJECT"); 118 $("#review-action").submit(); 119 }); 120 }); 121 </script> 122 </td> 123 </tr> 124 {% endif %} 125 </table> 126 <div> 127 {{ text_flp_merchant_area }} 128 </div>