├── .DS_Store ├── README.md ├── client ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── admin.cpython-310.pyc │ ├── apps.cpython-310.pyc │ ├── forms.cpython-310.pyc │ ├── models.cpython-310.pyc │ ├── urls.cpython-310.pyc │ └── views.cpython-310.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_client_team.py │ ├── 0003_alter_client_options.py │ ├── 0004_comment.py │ ├── 0005_clientfile.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-310.pyc │ │ ├── 0002_client_team.cpython-310.pyc │ │ ├── 0003_alter_client_options.cpython-310.pyc │ │ ├── 0004_comment.cpython-310.pyc │ │ ├── 0005_clientfile.cpython-310.pyc │ │ └── __init__.cpython-310.pyc ├── models.py ├── templates │ └── client │ │ ├── clients_add.html │ │ ├── clients_detail.html │ │ ├── clients_edit.html │ │ └── clients_list.html ├── tests.py ├── urls.py └── views.py ├── core ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── admin.cpython-310.pyc │ ├── apps.cpython-310.pyc │ ├── models.cpython-310.pyc │ └── views.cpython-310.pyc ├── admin.py ├── apps.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-310.pyc ├── models.py ├── templates │ └── core │ │ ├── about.html │ │ ├── base.html │ │ ├── index.html │ │ └── partials │ │ ├── footer.html │ │ └── nav.html ├── tests.py └── views.py ├── dashboard ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── admin.cpython-310.pyc │ ├── apps.cpython-310.pyc │ ├── models.cpython-310.pyc │ ├── urls.cpython-310.pyc │ └── views.cpython-310.pyc ├── admin.py ├── apps.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-310.pyc ├── models.py ├── templates │ └── dashboard │ │ └── dashboard.html ├── tests.py ├── urls.py └── views.py ├── db.sqlite3 ├── lead ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── admin.cpython-310.pyc │ ├── apps.cpython-310.pyc │ ├── forms.cpython-310.pyc │ ├── models.cpython-310.pyc │ ├── urls.cpython-310.pyc │ └── views.cpython-310.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_lead_converted_to_client.py │ ├── 0003_lead_team.py │ ├── 0004_alter_lead_options.py │ ├── 0005_comment.py │ ├── 0006_leadfile.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-310.pyc │ │ ├── 0002_lead_converted_to_client.cpython-310.pyc │ │ ├── 0003_lead_team.cpython-310.pyc │ │ ├── 0004_alter_lead_options.cpython-310.pyc │ │ ├── 0005_comment.cpython-310.pyc │ │ ├── 0006_leadfile.cpython-310.pyc │ │ └── __init__.cpython-310.pyc ├── models.py ├── templates │ └── lead │ │ ├── lead_detail.html │ │ ├── lead_form.html │ │ └── lead_list.html ├── tests.py ├── urls.py └── views.py ├── manage.py ├── media ├── .DS_Store ├── clientfiles │ └── chair1.jpg └── leadfiles │ └── toy-car.jpg ├── package.json ├── static ├── main.css └── main.min.css ├── tailwind.config.js ├── tealcrm ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── settings.cpython-310.pyc │ ├── urls.cpython-310.pyc │ └── wsgi.cpython-310.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── team ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── admin.cpython-310.pyc │ ├── apps.cpython-310.pyc │ ├── context_processors.cpython-310.pyc │ ├── forms.cpython-310.pyc │ ├── models.cpython-310.pyc │ ├── urls.cpython-310.pyc │ └── views.cpython-310.pyc ├── admin.py ├── apps.py ├── context_processors.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_plan.py │ ├── 0003_team_plan.py │ ├── 0004_alter_team_plan.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-310.pyc │ │ ├── 0002_plan.cpython-310.pyc │ │ ├── 0003_team_plan.cpython-310.pyc │ │ ├── 0004_alter_team_plan.cpython-310.pyc │ │ └── __init__.cpython-310.pyc ├── models.py ├── templates │ └── team │ │ ├── detail.html │ │ ├── edit_team.html │ │ └── teams_list.html ├── tests.py ├── urls.py └── views.py └── userprofile ├── __init__.py ├── __pycache__ ├── __init__.cpython-310.pyc ├── admin.cpython-310.pyc ├── apps.cpython-310.pyc ├── forms.cpython-310.pyc ├── models.cpython-310.pyc ├── urls.cpython-310.pyc └── views.cpython-310.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations ├── 0001_initial.py ├── 0002_userprofile_active_team.py ├── __init__.py └── __pycache__ │ ├── 0001_initial.cpython-310.pyc │ ├── 0002_userprofile_active_team.cpython-310.pyc │ └── __init__.cpython-310.pyc ├── models.py ├── templates └── userprofile │ ├── login.html │ ├── myaccount.html │ └── signup.html ├── tests.py ├── urls.py └── views.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # tealcrm 2 | -------------------------------------------------------------------------------- /client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /client/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /client/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /client/__pycache__/forms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/__pycache__/forms.cpython-310.pyc -------------------------------------------------------------------------------- /client/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /client/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /client/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /client/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/admin.py -------------------------------------------------------------------------------- /client/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/apps.py -------------------------------------------------------------------------------- /client/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/forms.py -------------------------------------------------------------------------------- /client/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/migrations/0001_initial.py -------------------------------------------------------------------------------- /client/migrations/0002_client_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/migrations/0002_client_team.py -------------------------------------------------------------------------------- /client/migrations/0003_alter_client_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/migrations/0003_alter_client_options.py -------------------------------------------------------------------------------- /client/migrations/0004_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/migrations/0004_comment.py -------------------------------------------------------------------------------- /client/migrations/0005_clientfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/migrations/0005_clientfile.py -------------------------------------------------------------------------------- /client/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/migrations/__pycache__/0001_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/migrations/__pycache__/0001_initial.cpython-310.pyc -------------------------------------------------------------------------------- /client/migrations/__pycache__/0002_client_team.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/migrations/__pycache__/0002_client_team.cpython-310.pyc -------------------------------------------------------------------------------- /client/migrations/__pycache__/0003_alter_client_options.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/migrations/__pycache__/0003_alter_client_options.cpython-310.pyc -------------------------------------------------------------------------------- /client/migrations/__pycache__/0004_comment.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/migrations/__pycache__/0004_comment.cpython-310.pyc -------------------------------------------------------------------------------- /client/migrations/__pycache__/0005_clientfile.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/migrations/__pycache__/0005_clientfile.cpython-310.pyc -------------------------------------------------------------------------------- /client/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /client/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/models.py -------------------------------------------------------------------------------- /client/templates/client/clients_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/templates/client/clients_add.html -------------------------------------------------------------------------------- /client/templates/client/clients_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/templates/client/clients_detail.html -------------------------------------------------------------------------------- /client/templates/client/clients_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/templates/client/clients_edit.html -------------------------------------------------------------------------------- /client/templates/client/clients_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/templates/client/clients_list.html -------------------------------------------------------------------------------- /client/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/tests.py -------------------------------------------------------------------------------- /client/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/urls.py -------------------------------------------------------------------------------- /client/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/client/views.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/core/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /core/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/core/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /core/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/core/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /core/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/core/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /core/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/core/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/core/admin.py -------------------------------------------------------------------------------- /core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/core/apps.py -------------------------------------------------------------------------------- /core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/core/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/core/models.py -------------------------------------------------------------------------------- /core/templates/core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/core/templates/core/about.html -------------------------------------------------------------------------------- /core/templates/core/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/core/templates/core/base.html -------------------------------------------------------------------------------- /core/templates/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/core/templates/core/index.html -------------------------------------------------------------------------------- /core/templates/core/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/core/templates/core/partials/footer.html -------------------------------------------------------------------------------- /core/templates/core/partials/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/core/templates/core/partials/nav.html -------------------------------------------------------------------------------- /core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/core/tests.py -------------------------------------------------------------------------------- /core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/core/views.py -------------------------------------------------------------------------------- /dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/dashboard/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/dashboard/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/dashboard/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/dashboard/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/dashboard/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/dashboard/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /dashboard/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/dashboard/admin.py -------------------------------------------------------------------------------- /dashboard/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/dashboard/apps.py -------------------------------------------------------------------------------- /dashboard/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/dashboard/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /dashboard/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/dashboard/models.py -------------------------------------------------------------------------------- /dashboard/templates/dashboard/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/dashboard/templates/dashboard/dashboard.html -------------------------------------------------------------------------------- /dashboard/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/dashboard/tests.py -------------------------------------------------------------------------------- /dashboard/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/dashboard/urls.py -------------------------------------------------------------------------------- /dashboard/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/dashboard/views.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /lead/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lead/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /lead/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /lead/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /lead/__pycache__/forms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/__pycache__/forms.cpython-310.pyc -------------------------------------------------------------------------------- /lead/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /lead/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /lead/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /lead/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/admin.py -------------------------------------------------------------------------------- /lead/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/apps.py -------------------------------------------------------------------------------- /lead/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/forms.py -------------------------------------------------------------------------------- /lead/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/migrations/0001_initial.py -------------------------------------------------------------------------------- /lead/migrations/0002_lead_converted_to_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/migrations/0002_lead_converted_to_client.py -------------------------------------------------------------------------------- /lead/migrations/0003_lead_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/migrations/0003_lead_team.py -------------------------------------------------------------------------------- /lead/migrations/0004_alter_lead_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/migrations/0004_alter_lead_options.py -------------------------------------------------------------------------------- /lead/migrations/0005_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/migrations/0005_comment.py -------------------------------------------------------------------------------- /lead/migrations/0006_leadfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/migrations/0006_leadfile.py -------------------------------------------------------------------------------- /lead/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lead/migrations/__pycache__/0001_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/migrations/__pycache__/0001_initial.cpython-310.pyc -------------------------------------------------------------------------------- /lead/migrations/__pycache__/0002_lead_converted_to_client.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/migrations/__pycache__/0002_lead_converted_to_client.cpython-310.pyc -------------------------------------------------------------------------------- /lead/migrations/__pycache__/0003_lead_team.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/migrations/__pycache__/0003_lead_team.cpython-310.pyc -------------------------------------------------------------------------------- /lead/migrations/__pycache__/0004_alter_lead_options.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/migrations/__pycache__/0004_alter_lead_options.cpython-310.pyc -------------------------------------------------------------------------------- /lead/migrations/__pycache__/0005_comment.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/migrations/__pycache__/0005_comment.cpython-310.pyc -------------------------------------------------------------------------------- /lead/migrations/__pycache__/0006_leadfile.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/migrations/__pycache__/0006_leadfile.cpython-310.pyc -------------------------------------------------------------------------------- /lead/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /lead/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/models.py -------------------------------------------------------------------------------- /lead/templates/lead/lead_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/templates/lead/lead_detail.html -------------------------------------------------------------------------------- /lead/templates/lead/lead_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/templates/lead/lead_form.html -------------------------------------------------------------------------------- /lead/templates/lead/lead_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/templates/lead/lead_list.html -------------------------------------------------------------------------------- /lead/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/tests.py -------------------------------------------------------------------------------- /lead/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/urls.py -------------------------------------------------------------------------------- /lead/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/lead/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/manage.py -------------------------------------------------------------------------------- /media/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/media/.DS_Store -------------------------------------------------------------------------------- /media/clientfiles/chair1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/media/clientfiles/chair1.jpg -------------------------------------------------------------------------------- /media/leadfiles/toy-car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/media/leadfiles/toy-car.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/package.json -------------------------------------------------------------------------------- /static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/static/main.css -------------------------------------------------------------------------------- /static/main.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/static/main.min.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tealcrm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tealcrm/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/tealcrm/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /tealcrm/__pycache__/settings.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/tealcrm/__pycache__/settings.cpython-310.pyc -------------------------------------------------------------------------------- /tealcrm/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/tealcrm/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /tealcrm/__pycache__/wsgi.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/tealcrm/__pycache__/wsgi.cpython-310.pyc -------------------------------------------------------------------------------- /tealcrm/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/tealcrm/asgi.py -------------------------------------------------------------------------------- /tealcrm/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/tealcrm/settings.py -------------------------------------------------------------------------------- /tealcrm/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/tealcrm/urls.py -------------------------------------------------------------------------------- /tealcrm/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/tealcrm/wsgi.py -------------------------------------------------------------------------------- /team/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /team/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /team/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /team/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /team/__pycache__/context_processors.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/__pycache__/context_processors.cpython-310.pyc -------------------------------------------------------------------------------- /team/__pycache__/forms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/__pycache__/forms.cpython-310.pyc -------------------------------------------------------------------------------- /team/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /team/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /team/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /team/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/admin.py -------------------------------------------------------------------------------- /team/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/apps.py -------------------------------------------------------------------------------- /team/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/context_processors.py -------------------------------------------------------------------------------- /team/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/forms.py -------------------------------------------------------------------------------- /team/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/migrations/0001_initial.py -------------------------------------------------------------------------------- /team/migrations/0002_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/migrations/0002_plan.py -------------------------------------------------------------------------------- /team/migrations/0003_team_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/migrations/0003_team_plan.py -------------------------------------------------------------------------------- /team/migrations/0004_alter_team_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/migrations/0004_alter_team_plan.py -------------------------------------------------------------------------------- /team/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /team/migrations/__pycache__/0001_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/migrations/__pycache__/0001_initial.cpython-310.pyc -------------------------------------------------------------------------------- /team/migrations/__pycache__/0002_plan.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/migrations/__pycache__/0002_plan.cpython-310.pyc -------------------------------------------------------------------------------- /team/migrations/__pycache__/0003_team_plan.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/migrations/__pycache__/0003_team_plan.cpython-310.pyc -------------------------------------------------------------------------------- /team/migrations/__pycache__/0004_alter_team_plan.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/migrations/__pycache__/0004_alter_team_plan.cpython-310.pyc -------------------------------------------------------------------------------- /team/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /team/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/models.py -------------------------------------------------------------------------------- /team/templates/team/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/templates/team/detail.html -------------------------------------------------------------------------------- /team/templates/team/edit_team.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/templates/team/edit_team.html -------------------------------------------------------------------------------- /team/templates/team/teams_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/templates/team/teams_list.html -------------------------------------------------------------------------------- /team/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/tests.py -------------------------------------------------------------------------------- /team/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/urls.py -------------------------------------------------------------------------------- /team/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/team/views.py -------------------------------------------------------------------------------- /userprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /userprofile/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /userprofile/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /userprofile/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /userprofile/__pycache__/forms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/__pycache__/forms.cpython-310.pyc -------------------------------------------------------------------------------- /userprofile/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /userprofile/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /userprofile/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /userprofile/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/admin.py -------------------------------------------------------------------------------- /userprofile/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/apps.py -------------------------------------------------------------------------------- /userprofile/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/forms.py -------------------------------------------------------------------------------- /userprofile/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/migrations/0001_initial.py -------------------------------------------------------------------------------- /userprofile/migrations/0002_userprofile_active_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/migrations/0002_userprofile_active_team.py -------------------------------------------------------------------------------- /userprofile/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /userprofile/migrations/__pycache__/0001_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/migrations/__pycache__/0001_initial.cpython-310.pyc -------------------------------------------------------------------------------- /userprofile/migrations/__pycache__/0002_userprofile_active_team.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/migrations/__pycache__/0002_userprofile_active_team.cpython-310.pyc -------------------------------------------------------------------------------- /userprofile/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /userprofile/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/models.py -------------------------------------------------------------------------------- /userprofile/templates/userprofile/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/templates/userprofile/login.html -------------------------------------------------------------------------------- /userprofile/templates/userprofile/myaccount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/templates/userprofile/myaccount.html -------------------------------------------------------------------------------- /userprofile/templates/userprofile/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/templates/userprofile/signup.html -------------------------------------------------------------------------------- /userprofile/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/tests.py -------------------------------------------------------------------------------- /userprofile/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/urls.py -------------------------------------------------------------------------------- /userprofile/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/tealcrm/HEAD/userprofile/views.py --------------------------------------------------------------------------------