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 Permalink Normal View History

from django.urls import path
2023-12-18 21:00:37 +01:00
from . import views
2024-02-03 22:07:20 +01:00
app_name = 'accounts'
2023-12-18 21:00:37 +01:00
urlpatterns = [
2024-02-03 22:07:20 +01:00
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'),
2023-12-18 21:00:37 +01:00
]