0a4ba2001b
modified: .env.example new file: compta/__pycache__/__init__.cpython-310.pyc new file: compta/__pycache__/admin.cpython-310.pyc new file: compta/__pycache__/apps.cpython-310.pyc new file: compta/__pycache__/models.cpython-310.pyc modified: compta/admin.py new file: compta/categories_indy.py modified: compta/indy.py modified: compta/management/commands/seed_reference.py new file: compta/migrations/0010_categorie_compte_pcg.py modified: compta/models.py modified: compta/templates/compta/base.html new file: compta/templates/compta/gestion.html modified: compta/urls.py new file: compta/views_gestion.py new file: config/__pycache__/__init__.cpython-310.pyc new file: config/__pycache__/settings.cpython-310.pyc modified: config/settings.py modified: entrypoint.sh
21 lines
968 B
Python
21 lines
968 B
Python
from django.urls import path
|
|
from . import views
|
|
from . import views_saisie
|
|
from . import views_import
|
|
from . import views_bookmarklet
|
|
from . import views_gestion
|
|
|
|
urlpatterns = [
|
|
path("dashboard/", views.dashboard, name="dashboard"),
|
|
path("gestion/", views_gestion.gestion, name="gestion"),
|
|
path("dashboard/mensuel/", views.vue_mensuelle, name="vue_mensuelle"),
|
|
path("declaration/urssaf/", views.declaration_urssaf, name="declaration_urssaf"),
|
|
path("declaration/tva/", views.declaration_tva, name="declaration_tva"),
|
|
path("saisie/", views_saisie.saisie_paiement, name="saisie_paiement"),
|
|
path("import/", views_import.import_csv, name="import_csv"),
|
|
path("import/bookmarklet/", views_bookmarklet.bookmarklet, name="bookmarklet"),
|
|
path("export/ventes/", views.export_ventes, name="export_ventes"),
|
|
path("export/tva/", views.export_tva, name="export_tva"),
|
|
path("export/urssaf/", views.export_urssaf, name="export_urssaf"),
|
|
]
|