1
|
|
|
# -*- coding: utf-8 -*- |
2
|
|
|
# Copyright 2017 Mathias WOLFF |
3
|
|
|
# This file is part of pyfreebilling. |
4
|
|
|
# |
5
|
|
|
# pyfreebilling is free software: you can redistribute it and/or modify |
6
|
|
|
# it under the terms of the GNU General Public License as published by |
7
|
|
|
# the Free Software Foundation, either version 3 of the License, or |
8
|
|
|
# (at your option) any later version. |
9
|
|
|
# |
10
|
|
|
# pyfreebilling is distributed in the hope that it will be useful, |
11
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
12
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13
|
|
|
# GNU General Public License for more details. |
14
|
|
|
# |
15
|
|
|
# You should have received a copy of the GNU General Public License |
16
|
|
|
# along with pyfreebilling. If not, see <http://www.gnu.org/licenses/> |
17
|
|
|
|
18
|
|
|
from django.contrib import admin |
19
|
|
|
|
20
|
|
|
from . models import Fraud |
21
|
|
|
|
22
|
|
|
|
23
|
|
|
class FraudAdmin(admin.ModelAdmin): |
24
|
|
|
list_display_links = ('company', 'customerdirectory') |
25
|
|
|
list_display = ('company', |
26
|
|
|
'customerdirectory', |
27
|
|
|
'amount_fraud', |
28
|
|
|
'high_amount_alert_sent', |
29
|
|
|
'minutes_fraud', |
30
|
|
|
'minutes_block_alert', |
31
|
|
|
'high_minutes_alert_sent', |
32
|
|
|
'account_blocked_alert_sent', |
33
|
|
|
'date_modified') |
34
|
|
|
readonly_fields = ('high_amount_alert_sent', |
35
|
|
|
'high_minutes_alert_sent', |
36
|
|
|
'account_blocked_alert_sent') |
37
|
|
|
ordering = ('-date_modified',) |
38
|
|
|
search_fields = ['^company__name', |
39
|
|
|
'^customerdirectory'] |
40
|
|
|
|
41
|
|
|
|
42
|
|
|
#---------------------------------------- |
43
|
|
|
# register |
44
|
|
|
#---------------------------------------- |
45
|
|
|
admin.site.register(Fraud, FraudAdmin) |
46
|
|
|
|