gitextract_lsm6zxq8/ ├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.rst ├── accounting/ │ ├── __init__.py │ ├── apps/ │ │ ├── __init__.py │ │ ├── books/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── calculators.py │ │ │ ├── context_processors.py │ │ │ ├── forms.py │ │ │ ├── managers.py │ │ │ ├── middlewares.py │ │ │ ├── migrations/ │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20141029_1606.py │ │ │ │ ├── 0003_auto_20141029_1606.py │ │ │ │ ├── 0004_auto_20141104_1026.py │ │ │ │ ├── 0005_auto_20150128_1458.py │ │ │ │ ├── 0006_auto_20150206_1836.py │ │ │ │ ├── 0007_auto_20150206_1836.py │ │ │ │ ├── 0008_auto_20150206_1843.py │ │ │ │ ├── 0009_auto_20150206_1850.py │ │ │ │ ├── 0010_auto_20150210_1449.py │ │ │ │ ├── 0011_auto_20150324_1430.py │ │ │ │ └── __init__.py │ │ │ ├── mixins.py │ │ │ ├── models.py │ │ │ ├── templatetags/ │ │ │ │ ├── __init__.py │ │ │ │ └── status_filters.py │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ ├── connect/ │ │ │ ├── __init__.py │ │ │ ├── middlewares.py │ │ │ ├── models.py │ │ │ ├── steps.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── context_processors.py │ │ ├── people/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── forms.py │ │ │ ├── migrations/ │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20141029_1609.py │ │ │ │ ├── 0003_employee_payroll_tax_rate.py │ │ │ │ ├── 0004_auto_20141029_2306.py │ │ │ │ ├── 0005_auto_20141029_2308.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ └── reports/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── forms.py │ │ ├── migrations/ │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20150128_1458.py │ │ │ ├── 0003_auto_20150131_1902.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── urls.py │ │ ├── views.py │ │ └── wrappers.py │ ├── defaults.py │ ├── libs/ │ │ ├── __init__.py │ │ ├── checks.py │ │ ├── decorators.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── foundation.py │ │ ├── intervals.py │ │ ├── prices.py │ │ ├── templatetags/ │ │ │ ├── __init__.py │ │ │ ├── check_filters.py │ │ │ ├── check_tags.py │ │ │ ├── currency_filters.py │ │ │ ├── display_tags.py │ │ │ ├── distance_filters.py │ │ │ ├── float_filters.py │ │ │ ├── form_filters.py │ │ │ ├── form_tags.py │ │ │ ├── format_filters.py │ │ │ ├── introspection_filters.py │ │ │ ├── my_filters.py │ │ │ ├── nav.py │ │ │ └── url_tags.py │ │ └── utils.py │ ├── static/ │ │ └── accounting/ │ │ ├── css/ │ │ │ └── main.css │ │ └── js/ │ │ ├── books/ │ │ │ └── invoice_or_bill_create.js │ │ ├── jquery.formset.js │ │ └── main.js │ ├── templates/ │ │ └── accounting/ │ │ ├── _generics/ │ │ │ ├── check_tag.html │ │ │ ├── delete_entity.html │ │ │ └── form.html │ │ ├── _partials/ │ │ │ └── form_fields.html │ │ ├── base.html │ │ ├── books/ │ │ │ ├── _generics/ │ │ │ │ ├── sale_content.html │ │ │ │ ├── sale_detail.html │ │ │ │ └── sale_list.html │ │ │ ├── _partials/ │ │ │ │ ├── expense_claim_list.html │ │ │ │ ├── payment_list.html │ │ │ │ └── tax_rate_list.html │ │ │ ├── bill_create_or_update.html │ │ │ ├── bill_detail.html │ │ │ ├── bill_list.html │ │ │ ├── dashboard.html │ │ │ ├── estimate_create_or_update.html │ │ │ ├── estimate_detail.html │ │ │ ├── estimate_list.html │ │ │ ├── expense_claim_create_or_update.html │ │ │ ├── expense_claim_detail.html │ │ │ ├── expense_claim_list.html │ │ │ ├── invoice_create_or_update.html │ │ │ ├── invoice_detail.html │ │ │ ├── invoice_list.html │ │ │ ├── organization_create_or_update.html │ │ │ ├── organization_detail.html │ │ │ ├── organization_list.html │ │ │ ├── organization_selector.html │ │ │ ├── payment_create_or_update.html │ │ │ ├── tax_rate_create_or_update.html │ │ │ └── tax_rate_list.html │ │ ├── connect/ │ │ │ └── getting_started.html │ │ ├── layout.html │ │ ├── people/ │ │ │ ├── client_create_or_update.html │ │ │ ├── client_detail.html │ │ │ ├── client_list.html │ │ │ ├── employee_create_or_update.html │ │ │ ├── employee_detail.html │ │ │ └── employee_list.html │ │ └── reports/ │ │ ├── _partials/ │ │ │ └── period_form.html │ │ ├── financial_settings_update.html │ │ ├── invoice_details_report.html │ │ ├── pay_run_report.html │ │ ├── payrun_settings_update.html │ │ ├── profit_and_loss_report.html │ │ ├── report_list.html │ │ ├── settings_list.html │ │ └── tax_report.html │ ├── urls.py │ └── wsgi.py ├── lint.sh ├── requirements.txt ├── runtests.py ├── setup.cfg ├── setup.py └── tests/ ├── __init__.py ├── _site/ │ ├── __init__.py │ └── model_tests_app/ │ ├── __init__.py │ └── models.py ├── config.py ├── functional/ │ ├── __init__.py │ └── libs/ │ ├── __init__.py │ ├── context_processors_tests.py │ ├── template_tags_tests.py │ └── utils_tests.py ├── integration/ │ └── __init__.py ├── settings.py └── unit/ ├── __init__.py ├── books/ │ ├── __init__.py │ ├── bill_tests.py │ └── invoice_tests.py ├── clients/ │ ├── __init__.py │ ├── organization_tests.py │ └── user_tests.py └── libs/ ├── __init__.py └── prices_tests.py