VoipSwitchAdmin   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
c 0
b 0
f 0
dl 0
loc 5
rs 10
1
# -*- coding: utf-8 -*-
2
# Copyright 2013 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 pyfreebilling.switch.models import VoipSwitch
21
22
23
class VoipSwitchAdmin(admin.ModelAdmin):
24
    list_display = ('name', 'setid', 'ip', 'esl_listen_ip', 'date_modified')
25
    readonly_fields = ('date_added', 'date_modified')
26
    list_filter = ('name',)
27
    ordering = ('name',)
28
29
30
# ----------------------------------------
31
# register
32
# ----------------------------------------
33
admin.site.register(VoipSwitch, VoipSwitchAdmin)
34