RatesTable   A
last analyzed

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 12
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
# -*- coding: utf-8 -*-
19
20
import django_tables2 as tables
21
22
from pyfreebilling.pyfreebill.models import CustomerRates
23
24
25
class RatesTable(tables.Table):
26
    class Meta:
27
        model = CustomerRates
28
        per_page = 30
29
        attrs = {"class": "bootstrap-tables2"}
30
        fields = (
31
            "destination",
32
            "prefix",
33
            "rate",
34
            "block_min_duration",
35
            "minimal_time",
36
            "init_block")
37