Metadata-Version: 1.1
Name: pyfb-reporting
Version: 1.2.1
Summary: Reporting application for PyFB project
Home-page: https://www.pyfreebilling.com
Author: Mathias WOLFF
Author-email: mathias@celea.org
License: MIT
Description: =============================
        pyfb-reporting
        =============================
        
        .. image:: https://badge.fury.io/py/pyfb-reporting.svg
            :target: https://badge.fury.io/py/pyfb-reporting
        
        .. image:: https://travis-ci.org/mwolff44/pyfb-reporting.svg?branch=master
            :target: https://travis-ci.org/mwolff44/pyfb-reporting
        
        .. image:: https://codecov.io/gh/mwolff44/pyfb-reporting/branch/master/graph/badge.svg
            :target: https://codecov.io/gh/mwolff44/pyfb-reporting
        
        Your project description goes here
        
        Documentation
        -------------
        
        The full documentation is at https://pyfb-reporting.readthedocs.io.
        
        Quickstart
        ----------
        
        Install pyfb-reporting::
        
            pip install pyfb-reporting
        
        Add it to your `INSTALLED_APPS`:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...
                'pyfb_reporting.apps.PyfbReportingConfig',
                ...
            )
        
        Add pyfb-reporting's URL patterns:
        
        .. code-block:: python
        
            from pyfb_reporting import urls as pyfb_reporting_urls
        
        
            urlpatterns = [
                ...
                url(r'^', include(pyfb_reporting_urls)),
                ...
            ]
        
        Features
        --------
        
        * TODO
        
        Running Tests
        -------------
        
        Does the code actually work?
        
        ::
        
            source <YOURVIRTUALENV>/bin/activate
            (myenv) $ pip install tox
            (myenv) $ tox
        
        Credits
        -------
        
        Tools used in rendering this package:
        
        *  Cookiecutter_
        *  `cookiecutter-djangopackage`_
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage
        
        
        
        
        History
        -------
        
        1.2.1 (2020-10-11)
        ++++++++++++++++++
        
        * Correct cdr detailed view (billsec and costsec were inversed)
        
        1.2.0 (2020-10-06)
        ++++++++++++++++++
        
        * Update API
        * Add field in CDR to have the correct value of the billed duration by provider
        
        1.1.2 (2020-05-29)
        ++++++++++++++++++
        
        * Correct little bug
        
        1.1.0 (2020-05-27)
        ++++++++++++++++++
        
        * Add a link to gross CDRs in CDR detail view
        * Add CDR export feature
        * New date filter in CDR list
        
        1.0.0 (2020-05-21)
        ++++++++++++++++++
        
        * Provider can be search in CDR list view
        * CDR detail view has been reworked
        * Call class has been added (on-net / off-net) 
        
        0.9.5 (2020-02-21)
        ++++++++++++++++++
        
        * Error in DB migration 
        
        0.9.4 (2020-02-19)
        ++++++++++++++++++
        
        * Add uuid field for CDR 
        * Create RREvent model
        
        0.9.3 (2019-06-23)
        ++++++++++++++++++
        
        * Show CDR form Latest one to older ones
        
        0.9.2 (2019-06-22)
        ++++++++++++++++++
        
        * Add route_json in cdr
        * Remove unused field
        * Admin interface enhancements
        
        0.9.1 (2019-06-18)
        ++++++++++++++++++
        
        * Change duration filed from integer to decimal.
        
        0.9.0 (2019-04-30)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: pyfb-reporting
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
