Skip to content

mpasternak/django-flexible-reports

Repository files navigation

Django Flexible Reports

image

image

image

A framework for report generation in Django

Documentation

The full documentation is at https://django-flexible-reports.readthedocs.io.

Quickstart

Install Django Flexible Reports:

pip install django-flexible-reports

Add it to your `INSTALLED_APPS`:

INSTALLED_APPS = (
    ...
    'flexible_reports.apps.FlexibleReportsConfig',
    ...
)

Add Django Flexible Reports's URL patterns:

from flexible_reports import urls as flexible_reports_urls


urlpatterns = [
    ...
    url(r'^', include(flexible_reports_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:

About

A framework for report generation in Django

Resources

License

Stars

Watchers

Forks

Packages

No packages published