├── .coveralls.yml ├── .gitignore ├── .landscape.yaml ├── .travis.yml ├── LICENSE ├── README.md ├── Vagrantfile ├── __init__.py ├── crm_core ├── __init__.py ├── admin.py ├── const │ ├── __init__.py │ ├── postaladdressprefix.py │ ├── purpose.py │ └── states.py ├── custom │ ├── __init__.py │ ├── custom_columns.py │ └── mixins.py ├── fixtures │ └── auth_groups.json ├── forms.py ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── ru │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20150903_2104.py │ ├── 0003_auto_20150905_0153.py │ ├── __init__.py │ └── shop │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20141227_1331.py │ │ ├── 0003_emailfield.py │ │ ├── 0004_productimage_file_field.py │ │ ├── 0005_auto_20150527_1127.py │ │ ├── 0006_auto_20150811_2053.py │ │ └── __init__.py ├── models.py ├── tables.py ├── templates │ ├── accounts │ │ └── account_profile_update.html │ ├── admin │ │ ├── includes │ │ │ └── backup.html │ │ └── includes_grappelli │ │ │ └── header.html │ ├── auth │ │ └── user_form.html │ ├── base.html │ ├── base │ │ ├── base.html │ │ ├── form_view_base.html │ │ ├── form_with_inlines_base.html │ │ ├── main_section_base.html │ │ └── table_view_base.html │ ├── blog │ │ ├── blog_post_detail.html │ │ ├── blog_post_list.html │ │ └── includes │ │ │ └── filter_panel.html │ ├── crm_core │ │ ├── contract_confirm_delete.html │ │ ├── contract_detail.html │ │ ├── contract_form.html │ │ ├── contract_list.html │ │ ├── customer_confirm_delete.html │ │ ├── customer_detail.html │ │ ├── customer_form.html │ │ ├── customer_list.html │ │ ├── customerbillingcycle_confirm_delete.html │ │ ├── customerbillingcycle_form.html │ │ ├── customergroup_confirm_delete.html │ │ ├── customergroup_form.html │ │ ├── includes │ │ │ ├── billingcycle_row_edit_toolbar.html │ │ │ ├── category_row_edit_toolbar.html │ │ │ ├── contract_actions_toolbar.html │ │ │ ├── contract_edit_toolbar.html │ │ │ ├── contract_row_actions_toolbar.html │ │ │ ├── contract_row_edit_toolbar.html │ │ │ ├── customer_actions_toolbar.html │ │ │ ├── customer_edit_toolbar.html │ │ │ ├── customer_row_actions_toolbar.html │ │ │ ├── customer_row_edit_toolbar.html │ │ │ ├── customergroup_row_edit_toolbar.html │ │ │ ├── product_edit_toolbar.html │ │ │ ├── product_row_edit_toolbar.html │ │ │ ├── supplier_edit_toolbar.html │ │ │ ├── supplier_row_edit_toolbar.html │ │ │ ├── tax_row_edit_toolbar.html │ │ │ └── unit_row_edit_toolbar.html │ │ ├── invoice_confirm_delete.html │ │ ├── invoice_form.html │ │ ├── purchaseorder_confirm_delete.html │ │ ├── purchaseorder_form.html │ │ ├── quote_confirm_delete.html │ │ ├── quote_form.html │ │ ├── supplier_confirm_delete.html │ │ ├── supplier_detail.html │ │ ├── supplier_form.html │ │ ├── supplier_list.html │ │ ├── taxrate_confirm_delete.html │ │ ├── taxrate_form.html │ │ ├── unit_confirm_delete.html │ │ └── unit_form.html │ ├── dashboard.html │ ├── email │ │ ├── base.html │ │ ├── base.txt │ │ ├── comment_notification.html │ │ ├── comment_notification.txt │ │ ├── form_response.html │ │ ├── form_response.txt │ │ ├── form_response_copies.html │ │ ├── form_response_copies.txt │ │ ├── order_receipt.html │ │ ├── order_receipt.txt │ │ ├── receipt.html │ │ └── receipt_rtl.html │ ├── errors │ │ ├── 404.html │ │ └── 500.html │ ├── generic │ │ ├── comments.html │ │ └── includes │ │ │ ├── comment.html │ │ │ ├── comments.html │ │ │ ├── disqus_comments.html │ │ │ ├── disqus_counts.html │ │ │ ├── disqus_sso.html │ │ │ └── rating.html │ ├── includes │ │ ├── editable_form.html │ │ ├── editable_loader.html │ │ ├── editable_toolbar.html │ │ ├── footer_scripts.html │ │ ├── form_errors.html │ │ ├── form_fields.html │ │ ├── pagination.html │ │ ├── search_form.html │ │ ├── user_panel.html │ │ └── welcome.html │ ├── index.html │ ├── pages │ │ ├── category.html │ │ ├── form.html │ │ ├── gallery.html │ │ ├── index.html │ │ ├── menus │ │ │ ├── admin.html │ │ │ ├── breadcrumb.html │ │ │ ├── dropdown.html │ │ │ ├── footer.html │ │ │ ├── footer_tree.html │ │ │ ├── mobile.html │ │ │ ├── primary.html │ │ │ ├── sidebar.html │ │ │ └── tree.html │ │ ├── page.html │ │ └── richtextpage.html │ ├── pdf_templates │ │ ├── invoice.html │ │ ├── pdf_base.html │ │ ├── purchaseorder.html │ │ └── quote.html │ ├── registration │ │ └── login.html │ ├── search_results.html │ ├── settings.html │ ├── shop.html │ ├── shop │ │ ├── base.html │ │ ├── billing_shipping.html │ │ ├── cart.html │ │ ├── category_confirm_delete.html │ │ ├── category_form.html │ │ ├── checkout.html │ │ ├── complete.html │ │ ├── confirmation.html │ │ ├── includes │ │ │ ├── order_details.html │ │ │ ├── order_details_rtl.html │ │ │ ├── order_totals.html │ │ │ ├── order_totals.txt │ │ │ └── payment_fields.html │ │ ├── order_history.html │ │ ├── order_invoice.html │ │ ├── order_invoice_pdf.html │ │ ├── payment.html │ │ ├── product.html │ │ ├── product_confirm_delete.html │ │ ├── product_form.html │ │ ├── product_list.html │ │ └── wishlist.html │ └── tables2 │ │ └── bootstrapped-tables2.html ├── templatetags │ ├── __init__.py │ └── admin_backup_tags.py └── views.py ├── dev-requirements.txt ├── doc-requirements.txt ├── doc ├── Makefile ├── book │ └── index.md ├── make.bat └── source │ ├── accounting.rst │ ├── conf.py │ ├── crm.rst │ ├── developer.rst │ ├── djangoUserExtention.rst │ ├── images │ ├── addbutton.png │ ├── addcustomerbillingcycleform.png │ ├── addcustomerform.png │ ├── addproductform1.png │ ├── addproductform2.png │ ├── addquoteform1.png │ ├── addquoteform2.png │ ├── addunitformhour.png │ ├── addunitformminute.png │ ├── adminlogin.png │ ├── applicationlist.png │ ├── checkboxobjectlist.png │ ├── contract_overview.png │ ├── customer_create.png │ ├── customer_overview.png │ ├── customeractionlist.png │ ├── customeraddbutton.png │ ├── dashboard.png │ ├── filter.png │ ├── pdfcreation.svg │ ├── product_overview.png │ ├── settings.png │ └── userprivileges.png │ ├── index.rst │ ├── installation.rst │ ├── intro.rst │ ├── screenshots.rst │ ├── tutorial.rst │ └── workflow.rst ├── international ├── LICENSE ├── __init__.py ├── fixtures │ └── countries_fixture.json ├── forms.py ├── locale │ └── de │ │ └── LC_MESSAGES │ │ └── django.po ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py └── settings.py ├── local_settings.py ├── manage.py ├── requirements.txt ├── run.sh ├── settings.py ├── static ├── assets │ ├── css │ │ ├── bootstrap-tables2.css │ │ ├── bootstrap.css │ │ ├── datetimepicker.css │ │ ├── style-responsive.css │ │ ├── style.css │ │ └── table-responsive.css │ ├── font-awesome │ │ ├── css │ │ │ └── font-awesome.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── img │ │ ├── add.png │ │ ├── checkbox-gray.png │ │ ├── delete.png │ │ ├── file_icon.png │ │ ├── mask.png │ │ ├── team-logo.png │ │ └── zoom.png │ ├── js │ │ ├── bootstrap-datetimepicker.js │ │ ├── bootstrap.min.js │ │ ├── chart-master │ │ │ └── Chart.js │ │ ├── common-scripts.js │ │ ├── gritter-conf.js │ │ ├── gritter │ │ │ ├── css │ │ │ │ ├── jquery.gritter.css │ │ │ │ └── jquery.gritter0.css │ │ │ ├── images │ │ │ │ ├── gritter-light.png │ │ │ │ ├── gritter-long.png │ │ │ │ ├── gritter.png │ │ │ │ └── ie-spacer.gif │ │ │ └── js │ │ │ │ └── jquery.gritter.js │ │ ├── jquery-ui-1.9.2.custom.min.js │ │ ├── jquery.dcjqaccordion.2.7.js │ │ ├── jquery.formset.js │ │ ├── jquery.js │ │ ├── jquery.nicescroll.js │ │ ├── jquery.scrollTo.min.js │ │ ├── jquery.sparkline.js │ │ ├── locales │ │ │ ├── bootstrap-datetimepicker.ar.js │ │ │ ├── bootstrap-datetimepicker.bg.js │ │ │ ├── bootstrap-datetimepicker.ca.js │ │ │ ├── bootstrap-datetimepicker.cs.js │ │ │ ├── bootstrap-datetimepicker.da.js │ │ │ ├── bootstrap-datetimepicker.de.js │ │ │ ├── bootstrap-datetimepicker.ee.js │ │ │ ├── bootstrap-datetimepicker.el.js │ │ │ ├── bootstrap-datetimepicker.es.js │ │ │ ├── bootstrap-datetimepicker.eu.js │ │ │ ├── bootstrap-datetimepicker.fi.js │ │ │ ├── bootstrap-datetimepicker.fr.js │ │ │ ├── bootstrap-datetimepicker.he.js │ │ │ ├── bootstrap-datetimepicker.hr.js │ │ │ ├── bootstrap-datetimepicker.hu.js │ │ │ ├── bootstrap-datetimepicker.id.js │ │ │ ├── bootstrap-datetimepicker.is.js │ │ │ ├── bootstrap-datetimepicker.it.js │ │ │ ├── bootstrap-datetimepicker.ja.js │ │ │ ├── bootstrap-datetimepicker.ko.js │ │ │ ├── bootstrap-datetimepicker.kr.js │ │ │ ├── bootstrap-datetimepicker.lt.js │ │ │ ├── bootstrap-datetimepicker.lv.js │ │ │ ├── bootstrap-datetimepicker.ms.js │ │ │ ├── bootstrap-datetimepicker.nb.js │ │ │ ├── bootstrap-datetimepicker.nl.js │ │ │ ├── bootstrap-datetimepicker.no.js │ │ │ ├── bootstrap-datetimepicker.pl.js │ │ │ ├── bootstrap-datetimepicker.pt-BR.js │ │ │ ├── bootstrap-datetimepicker.pt.js │ │ │ ├── bootstrap-datetimepicker.ro.js │ │ │ ├── bootstrap-datetimepicker.rs-latin.js │ │ │ ├── bootstrap-datetimepicker.rs.js │ │ │ ├── bootstrap-datetimepicker.ru.js │ │ │ ├── bootstrap-datetimepicker.sk.js │ │ │ ├── bootstrap-datetimepicker.sl.js │ │ │ ├── bootstrap-datetimepicker.sv.js │ │ │ ├── bootstrap-datetimepicker.sw.js │ │ │ ├── bootstrap-datetimepicker.th.js │ │ │ ├── bootstrap-datetimepicker.tr.js │ │ │ ├── bootstrap-datetimepicker.ua.js │ │ │ ├── bootstrap-datetimepicker.uk.js │ │ │ ├── bootstrap-datetimepicker.zh-CN.js │ │ │ └── bootstrap-datetimepicker.zh-TW.js │ │ └── sparkline-chart.js │ └── lineicons │ │ ├── fonts │ │ ├── linecons.eot │ │ ├── linecons.svg │ │ ├── linecons.ttf │ │ └── linecons.woff │ │ ├── index.html │ │ ├── lte-ie7.js │ │ └── style.css └── media │ ├── avatars │ ├── avatar.jpg │ └── img-koala.png │ └── data │ ├── logo.png │ └── pdf │ ├── invoices │ └── .gitignore │ ├── purchaseorders │ └── .gitignore │ └── quotes │ └── .gitignore ├── urls.py └── wsgi.py /.coveralls.yml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/.gitignore -------------------------------------------------------------------------------- /.landscape.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/.landscape.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/Vagrantfile -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | import cartridge 2 | -------------------------------------------------------------------------------- /crm_core/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module provides the Koalix CRM core functionality 3 | """ -------------------------------------------------------------------------------- /crm_core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/admin.py -------------------------------------------------------------------------------- /crm_core/const/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crm_core/const/postaladdressprefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/const/postaladdressprefix.py -------------------------------------------------------------------------------- /crm_core/const/purpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/const/purpose.py -------------------------------------------------------------------------------- /crm_core/const/states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/const/states.py -------------------------------------------------------------------------------- /crm_core/custom/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'Thorsten' 2 | -------------------------------------------------------------------------------- /crm_core/custom/custom_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/custom/custom_columns.py -------------------------------------------------------------------------------- /crm_core/custom/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/custom/mixins.py -------------------------------------------------------------------------------- /crm_core/fixtures/auth_groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/fixtures/auth_groups.json -------------------------------------------------------------------------------- /crm_core/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/forms.py -------------------------------------------------------------------------------- /crm_core/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /crm_core/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /crm_core/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /crm_core/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /crm_core/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /crm_core/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /crm_core/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /crm_core/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /crm_core/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /crm_core/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /crm_core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/migrations/0001_initial.py -------------------------------------------------------------------------------- /crm_core/migrations/0002_auto_20150903_2104.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/migrations/0002_auto_20150903_2104.py -------------------------------------------------------------------------------- /crm_core/migrations/0003_auto_20150905_0153.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/migrations/0003_auto_20150905_0153.py -------------------------------------------------------------------------------- /crm_core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crm_core/migrations/shop/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/migrations/shop/0001_initial.py -------------------------------------------------------------------------------- /crm_core/migrations/shop/0002_auto_20141227_1331.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/migrations/shop/0002_auto_20141227_1331.py -------------------------------------------------------------------------------- /crm_core/migrations/shop/0003_emailfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/migrations/shop/0003_emailfield.py -------------------------------------------------------------------------------- /crm_core/migrations/shop/0004_productimage_file_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/migrations/shop/0004_productimage_file_field.py -------------------------------------------------------------------------------- /crm_core/migrations/shop/0005_auto_20150527_1127.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/migrations/shop/0005_auto_20150527_1127.py -------------------------------------------------------------------------------- /crm_core/migrations/shop/0006_auto_20150811_2053.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/migrations/shop/0006_auto_20150811_2053.py -------------------------------------------------------------------------------- /crm_core/migrations/shop/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'Thorsten' 2 | -------------------------------------------------------------------------------- /crm_core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/models.py -------------------------------------------------------------------------------- /crm_core/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/tables.py -------------------------------------------------------------------------------- /crm_core/templates/accounts/account_profile_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/accounts/account_profile_update.html -------------------------------------------------------------------------------- /crm_core/templates/admin/includes/backup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/admin/includes/backup.html -------------------------------------------------------------------------------- /crm_core/templates/admin/includes_grappelli/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/admin/includes_grappelli/header.html -------------------------------------------------------------------------------- /crm_core/templates/auth/user_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/auth/user_form.html -------------------------------------------------------------------------------- /crm_core/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/base.html -------------------------------------------------------------------------------- /crm_core/templates/base/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/base/base.html -------------------------------------------------------------------------------- /crm_core/templates/base/form_view_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/base/form_view_base.html -------------------------------------------------------------------------------- /crm_core/templates/base/form_with_inlines_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/base/form_with_inlines_base.html -------------------------------------------------------------------------------- /crm_core/templates/base/main_section_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/base/main_section_base.html -------------------------------------------------------------------------------- /crm_core/templates/base/table_view_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/base/table_view_base.html -------------------------------------------------------------------------------- /crm_core/templates/blog/blog_post_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/blog/blog_post_detail.html -------------------------------------------------------------------------------- /crm_core/templates/blog/blog_post_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/blog/blog_post_list.html -------------------------------------------------------------------------------- /crm_core/templates/blog/includes/filter_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/blog/includes/filter_panel.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/contract_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/contract_confirm_delete.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/contract_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/contract_detail.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/contract_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/contract_form.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/contract_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/contract_list.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/customer_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/customer_confirm_delete.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/customer_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/customer_detail.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/customer_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/customer_form.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/customer_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/customer_list.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/customerbillingcycle_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/customerbillingcycle_confirm_delete.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/customerbillingcycle_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/customerbillingcycle_form.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/customergroup_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/customergroup_confirm_delete.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/customergroup_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/customergroup_form.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/includes/billingcycle_row_edit_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/includes/billingcycle_row_edit_toolbar.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/includes/category_row_edit_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/includes/category_row_edit_toolbar.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/includes/contract_actions_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/includes/contract_actions_toolbar.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/includes/contract_edit_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/includes/contract_edit_toolbar.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/includes/contract_row_actions_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/includes/contract_row_actions_toolbar.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/includes/contract_row_edit_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/includes/contract_row_edit_toolbar.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/includes/customer_actions_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/includes/customer_actions_toolbar.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/includes/customer_edit_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/includes/customer_edit_toolbar.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/includes/customer_row_actions_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/includes/customer_row_actions_toolbar.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/includes/customer_row_edit_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/includes/customer_row_edit_toolbar.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/includes/customergroup_row_edit_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/includes/customergroup_row_edit_toolbar.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/includes/product_edit_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/includes/product_edit_toolbar.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/includes/product_row_edit_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/includes/product_row_edit_toolbar.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/includes/supplier_edit_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/includes/supplier_edit_toolbar.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/includes/supplier_row_edit_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/includes/supplier_row_edit_toolbar.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/includes/tax_row_edit_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/includes/tax_row_edit_toolbar.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/includes/unit_row_edit_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/includes/unit_row_edit_toolbar.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/invoice_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/invoice_confirm_delete.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/invoice_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/invoice_form.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/purchaseorder_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/purchaseorder_confirm_delete.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/purchaseorder_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/purchaseorder_form.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/quote_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/quote_confirm_delete.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/quote_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/quote_form.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/supplier_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/supplier_confirm_delete.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/supplier_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/supplier_detail.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/supplier_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/supplier_form.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/supplier_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/supplier_list.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/taxrate_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/taxrate_confirm_delete.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/taxrate_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/taxrate_form.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/unit_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/unit_confirm_delete.html -------------------------------------------------------------------------------- /crm_core/templates/crm_core/unit_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/crm_core/unit_form.html -------------------------------------------------------------------------------- /crm_core/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/dashboard.html -------------------------------------------------------------------------------- /crm_core/templates/email/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/email/base.html -------------------------------------------------------------------------------- /crm_core/templates/email/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/email/base.txt -------------------------------------------------------------------------------- /crm_core/templates/email/comment_notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/email/comment_notification.html -------------------------------------------------------------------------------- /crm_core/templates/email/comment_notification.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/email/comment_notification.txt -------------------------------------------------------------------------------- /crm_core/templates/email/form_response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/email/form_response.html -------------------------------------------------------------------------------- /crm_core/templates/email/form_response.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/email/form_response.txt -------------------------------------------------------------------------------- /crm_core/templates/email/form_response_copies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/email/form_response_copies.html -------------------------------------------------------------------------------- /crm_core/templates/email/form_response_copies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/email/form_response_copies.txt -------------------------------------------------------------------------------- /crm_core/templates/email/order_receipt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/email/order_receipt.html -------------------------------------------------------------------------------- /crm_core/templates/email/order_receipt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/email/order_receipt.txt -------------------------------------------------------------------------------- /crm_core/templates/email/receipt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/email/receipt.html -------------------------------------------------------------------------------- /crm_core/templates/email/receipt_rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/email/receipt_rtl.html -------------------------------------------------------------------------------- /crm_core/templates/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/errors/404.html -------------------------------------------------------------------------------- /crm_core/templates/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/errors/500.html -------------------------------------------------------------------------------- /crm_core/templates/generic/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/generic/comments.html -------------------------------------------------------------------------------- /crm_core/templates/generic/includes/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/generic/includes/comment.html -------------------------------------------------------------------------------- /crm_core/templates/generic/includes/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/generic/includes/comments.html -------------------------------------------------------------------------------- /crm_core/templates/generic/includes/disqus_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/generic/includes/disqus_comments.html -------------------------------------------------------------------------------- /crm_core/templates/generic/includes/disqus_counts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/generic/includes/disqus_counts.html -------------------------------------------------------------------------------- /crm_core/templates/generic/includes/disqus_sso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/generic/includes/disqus_sso.html -------------------------------------------------------------------------------- /crm_core/templates/generic/includes/rating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/generic/includes/rating.html -------------------------------------------------------------------------------- /crm_core/templates/includes/editable_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/includes/editable_form.html -------------------------------------------------------------------------------- /crm_core/templates/includes/editable_loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/includes/editable_loader.html -------------------------------------------------------------------------------- /crm_core/templates/includes/editable_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/includes/editable_toolbar.html -------------------------------------------------------------------------------- /crm_core/templates/includes/footer_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/includes/footer_scripts.html -------------------------------------------------------------------------------- /crm_core/templates/includes/form_errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/includes/form_errors.html -------------------------------------------------------------------------------- /crm_core/templates/includes/form_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/includes/form_fields.html -------------------------------------------------------------------------------- /crm_core/templates/includes/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/includes/pagination.html -------------------------------------------------------------------------------- /crm_core/templates/includes/search_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/includes/search_form.html -------------------------------------------------------------------------------- /crm_core/templates/includes/user_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/includes/user_panel.html -------------------------------------------------------------------------------- /crm_core/templates/includes/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/includes/welcome.html -------------------------------------------------------------------------------- /crm_core/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/index.html -------------------------------------------------------------------------------- /crm_core/templates/pages/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/pages/category.html -------------------------------------------------------------------------------- /crm_core/templates/pages/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/pages/form.html -------------------------------------------------------------------------------- /crm_core/templates/pages/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/pages/gallery.html -------------------------------------------------------------------------------- /crm_core/templates/pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/pages/index.html -------------------------------------------------------------------------------- /crm_core/templates/pages/menus/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/pages/menus/admin.html -------------------------------------------------------------------------------- /crm_core/templates/pages/menus/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/pages/menus/breadcrumb.html -------------------------------------------------------------------------------- /crm_core/templates/pages/menus/dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/pages/menus/dropdown.html -------------------------------------------------------------------------------- /crm_core/templates/pages/menus/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/pages/menus/footer.html -------------------------------------------------------------------------------- /crm_core/templates/pages/menus/footer_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/pages/menus/footer_tree.html -------------------------------------------------------------------------------- /crm_core/templates/pages/menus/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/pages/menus/mobile.html -------------------------------------------------------------------------------- /crm_core/templates/pages/menus/primary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/pages/menus/primary.html -------------------------------------------------------------------------------- /crm_core/templates/pages/menus/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/pages/menus/sidebar.html -------------------------------------------------------------------------------- /crm_core/templates/pages/menus/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/pages/menus/tree.html -------------------------------------------------------------------------------- /crm_core/templates/pages/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/pages/page.html -------------------------------------------------------------------------------- /crm_core/templates/pages/richtextpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/pages/richtextpage.html -------------------------------------------------------------------------------- /crm_core/templates/pdf_templates/invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/pdf_templates/invoice.html -------------------------------------------------------------------------------- /crm_core/templates/pdf_templates/pdf_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/pdf_templates/pdf_base.html -------------------------------------------------------------------------------- /crm_core/templates/pdf_templates/purchaseorder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/pdf_templates/purchaseorder.html -------------------------------------------------------------------------------- /crm_core/templates/pdf_templates/quote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/pdf_templates/quote.html -------------------------------------------------------------------------------- /crm_core/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/registration/login.html -------------------------------------------------------------------------------- /crm_core/templates/search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/search_results.html -------------------------------------------------------------------------------- /crm_core/templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/settings.html -------------------------------------------------------------------------------- /crm_core/templates/shop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop.html -------------------------------------------------------------------------------- /crm_core/templates/shop/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/base.html -------------------------------------------------------------------------------- /crm_core/templates/shop/billing_shipping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/billing_shipping.html -------------------------------------------------------------------------------- /crm_core/templates/shop/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/cart.html -------------------------------------------------------------------------------- /crm_core/templates/shop/category_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/category_confirm_delete.html -------------------------------------------------------------------------------- /crm_core/templates/shop/category_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/category_form.html -------------------------------------------------------------------------------- /crm_core/templates/shop/checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/checkout.html -------------------------------------------------------------------------------- /crm_core/templates/shop/complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/complete.html -------------------------------------------------------------------------------- /crm_core/templates/shop/confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/confirmation.html -------------------------------------------------------------------------------- /crm_core/templates/shop/includes/order_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/includes/order_details.html -------------------------------------------------------------------------------- /crm_core/templates/shop/includes/order_details_rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/includes/order_details_rtl.html -------------------------------------------------------------------------------- /crm_core/templates/shop/includes/order_totals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/includes/order_totals.html -------------------------------------------------------------------------------- /crm_core/templates/shop/includes/order_totals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/includes/order_totals.txt -------------------------------------------------------------------------------- /crm_core/templates/shop/includes/payment_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/includes/payment_fields.html -------------------------------------------------------------------------------- /crm_core/templates/shop/order_history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/order_history.html -------------------------------------------------------------------------------- /crm_core/templates/shop/order_invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/order_invoice.html -------------------------------------------------------------------------------- /crm_core/templates/shop/order_invoice_pdf.html: -------------------------------------------------------------------------------- 1 | {% extends "shop/order_invoice.html" %} 2 | -------------------------------------------------------------------------------- /crm_core/templates/shop/payment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/payment.html -------------------------------------------------------------------------------- /crm_core/templates/shop/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/product.html -------------------------------------------------------------------------------- /crm_core/templates/shop/product_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/product_confirm_delete.html -------------------------------------------------------------------------------- /crm_core/templates/shop/product_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/product_form.html -------------------------------------------------------------------------------- /crm_core/templates/shop/product_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/product_list.html -------------------------------------------------------------------------------- /crm_core/templates/shop/wishlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/shop/wishlist.html -------------------------------------------------------------------------------- /crm_core/templates/tables2/bootstrapped-tables2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templates/tables2/bootstrapped-tables2.html -------------------------------------------------------------------------------- /crm_core/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crm_core/templatetags/admin_backup_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/templatetags/admin_backup_tags.py -------------------------------------------------------------------------------- /crm_core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/crm_core/views.py -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /doc-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc-requirements.txt -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/book/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/book/index.md -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/source/accounting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/accounting.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/crm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/crm.rst -------------------------------------------------------------------------------- /doc/source/developer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/developer.rst -------------------------------------------------------------------------------- /doc/source/djangoUserExtention.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/djangoUserExtention.rst -------------------------------------------------------------------------------- /doc/source/images/addbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/addbutton.png -------------------------------------------------------------------------------- /doc/source/images/addcustomerbillingcycleform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/addcustomerbillingcycleform.png -------------------------------------------------------------------------------- /doc/source/images/addcustomerform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/addcustomerform.png -------------------------------------------------------------------------------- /doc/source/images/addproductform1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/addproductform1.png -------------------------------------------------------------------------------- /doc/source/images/addproductform2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/addproductform2.png -------------------------------------------------------------------------------- /doc/source/images/addquoteform1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/addquoteform1.png -------------------------------------------------------------------------------- /doc/source/images/addquoteform2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/addquoteform2.png -------------------------------------------------------------------------------- /doc/source/images/addunitformhour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/addunitformhour.png -------------------------------------------------------------------------------- /doc/source/images/addunitformminute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/addunitformminute.png -------------------------------------------------------------------------------- /doc/source/images/adminlogin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/adminlogin.png -------------------------------------------------------------------------------- /doc/source/images/applicationlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/applicationlist.png -------------------------------------------------------------------------------- /doc/source/images/checkboxobjectlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/checkboxobjectlist.png -------------------------------------------------------------------------------- /doc/source/images/contract_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/contract_overview.png -------------------------------------------------------------------------------- /doc/source/images/customer_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/customer_create.png -------------------------------------------------------------------------------- /doc/source/images/customer_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/customer_overview.png -------------------------------------------------------------------------------- /doc/source/images/customeractionlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/customeractionlist.png -------------------------------------------------------------------------------- /doc/source/images/customeraddbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/customeraddbutton.png -------------------------------------------------------------------------------- /doc/source/images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/dashboard.png -------------------------------------------------------------------------------- /doc/source/images/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/filter.png -------------------------------------------------------------------------------- /doc/source/images/pdfcreation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/pdfcreation.svg -------------------------------------------------------------------------------- /doc/source/images/product_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/product_overview.png -------------------------------------------------------------------------------- /doc/source/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/settings.png -------------------------------------------------------------------------------- /doc/source/images/userprivileges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/images/userprivileges.png -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/installation.rst -------------------------------------------------------------------------------- /doc/source/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/intro.rst -------------------------------------------------------------------------------- /doc/source/screenshots.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/screenshots.rst -------------------------------------------------------------------------------- /doc/source/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/tutorial.rst -------------------------------------------------------------------------------- /doc/source/workflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/doc/source/workflow.rst -------------------------------------------------------------------------------- /international/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/international/LICENSE -------------------------------------------------------------------------------- /international/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /international/fixtures/countries_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/international/fixtures/countries_fixture.json -------------------------------------------------------------------------------- /international/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/international/forms.py -------------------------------------------------------------------------------- /international/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/international/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /international/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/international/migrations/0001_initial.py -------------------------------------------------------------------------------- /international/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /international/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/international/models.py -------------------------------------------------------------------------------- /international/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/international/settings.py -------------------------------------------------------------------------------- /local_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/local_settings.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/run.sh -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/settings.py -------------------------------------------------------------------------------- /static/assets/css/bootstrap-tables2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/css/bootstrap-tables2.css -------------------------------------------------------------------------------- /static/assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/css/bootstrap.css -------------------------------------------------------------------------------- /static/assets/css/datetimepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/css/datetimepicker.css -------------------------------------------------------------------------------- /static/assets/css/style-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/css/style-responsive.css -------------------------------------------------------------------------------- /static/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/css/style.css -------------------------------------------------------------------------------- /static/assets/css/table-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/css/table-responsive.css -------------------------------------------------------------------------------- /static/assets/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /static/assets/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/assets/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/assets/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/assets/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/assets/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/assets/img/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/img/add.png -------------------------------------------------------------------------------- /static/assets/img/checkbox-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/img/checkbox-gray.png -------------------------------------------------------------------------------- /static/assets/img/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/img/delete.png -------------------------------------------------------------------------------- /static/assets/img/file_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/img/file_icon.png -------------------------------------------------------------------------------- /static/assets/img/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/img/mask.png -------------------------------------------------------------------------------- /static/assets/img/team-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/img/team-logo.png -------------------------------------------------------------------------------- /static/assets/img/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/img/zoom.png -------------------------------------------------------------------------------- /static/assets/js/bootstrap-datetimepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/bootstrap-datetimepicker.js -------------------------------------------------------------------------------- /static/assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/assets/js/chart-master/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/chart-master/Chart.js -------------------------------------------------------------------------------- /static/assets/js/common-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/common-scripts.js -------------------------------------------------------------------------------- /static/assets/js/gritter-conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/gritter-conf.js -------------------------------------------------------------------------------- /static/assets/js/gritter/css/jquery.gritter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/gritter/css/jquery.gritter.css -------------------------------------------------------------------------------- /static/assets/js/gritter/css/jquery.gritter0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/gritter/css/jquery.gritter0.css -------------------------------------------------------------------------------- /static/assets/js/gritter/images/gritter-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/gritter/images/gritter-light.png -------------------------------------------------------------------------------- /static/assets/js/gritter/images/gritter-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/gritter/images/gritter-long.png -------------------------------------------------------------------------------- /static/assets/js/gritter/images/gritter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/gritter/images/gritter.png -------------------------------------------------------------------------------- /static/assets/js/gritter/images/ie-spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/gritter/images/ie-spacer.gif -------------------------------------------------------------------------------- /static/assets/js/gritter/js/jquery.gritter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/gritter/js/jquery.gritter.js -------------------------------------------------------------------------------- /static/assets/js/jquery-ui-1.9.2.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/jquery-ui-1.9.2.custom.min.js -------------------------------------------------------------------------------- /static/assets/js/jquery.dcjqaccordion.2.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/jquery.dcjqaccordion.2.7.js -------------------------------------------------------------------------------- /static/assets/js/jquery.formset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/jquery.formset.js -------------------------------------------------------------------------------- /static/assets/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/jquery.js -------------------------------------------------------------------------------- /static/assets/js/jquery.nicescroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/jquery.nicescroll.js -------------------------------------------------------------------------------- /static/assets/js/jquery.scrollTo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/jquery.scrollTo.min.js -------------------------------------------------------------------------------- /static/assets/js/jquery.sparkline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/jquery.sparkline.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.ar.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.bg.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.ca.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.cs.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.da.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.de.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.ee.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.el.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.es.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.eu.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.fi.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.fr.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.he.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.hr.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.hu.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.id.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.is.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.it.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.ja.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.ko.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.kr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.kr.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.lt.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.lv.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.ms.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.nb.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.nl.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.no.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.pl.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.pt-BR.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.pt.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.ro.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.rs-latin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.rs-latin.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.rs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.rs.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.ru.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.sk.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.sl.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.sv.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.sw.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.th.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.tr.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.ua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.ua.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.uk.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.zh-CN.js -------------------------------------------------------------------------------- /static/assets/js/locales/bootstrap-datetimepicker.zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/locales/bootstrap-datetimepicker.zh-TW.js -------------------------------------------------------------------------------- /static/assets/js/sparkline-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/js/sparkline-chart.js -------------------------------------------------------------------------------- /static/assets/lineicons/fonts/linecons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/lineicons/fonts/linecons.eot -------------------------------------------------------------------------------- /static/assets/lineicons/fonts/linecons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/lineicons/fonts/linecons.svg -------------------------------------------------------------------------------- /static/assets/lineicons/fonts/linecons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/lineicons/fonts/linecons.ttf -------------------------------------------------------------------------------- /static/assets/lineicons/fonts/linecons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/lineicons/fonts/linecons.woff -------------------------------------------------------------------------------- /static/assets/lineicons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/lineicons/index.html -------------------------------------------------------------------------------- /static/assets/lineicons/lte-ie7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/lineicons/lte-ie7.js -------------------------------------------------------------------------------- /static/assets/lineicons/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/assets/lineicons/style.css -------------------------------------------------------------------------------- /static/media/avatars/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/media/avatars/avatar.jpg -------------------------------------------------------------------------------- /static/media/avatars/img-koala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/media/avatars/img-koala.png -------------------------------------------------------------------------------- /static/media/data/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/static/media/data/logo.png -------------------------------------------------------------------------------- /static/media/data/pdf/invoices/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf -------------------------------------------------------------------------------- /static/media/data/pdf/purchaseorders/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf -------------------------------------------------------------------------------- /static/media/data/pdf/quotes/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf -------------------------------------------------------------------------------- /urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/urls.py -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfroehlich82/koalixcrm/HEAD/wsgi.py --------------------------------------------------------------------------------