This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
facturio/accounts/urls.py

14 lines
337 B
Python
Raw Normal View History

from django.urls import path
2023-12-18 21:00:37 +01:00
from . import views
app_name = "accounts"
2023-12-18 21:00:37 +01:00
urlpatterns = [
path("", views.me, name="me"),
path("me/", views.me, name="me_exp"),
path("login/", views.auth_login, name="login"),
path("logout/", views.auth_logout, name="logout"),
path("register/", views.auth_register, name="register"),
]