You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
780 B
Python
24 lines
780 B
Python
from django.urls import path
|
|
from django.contrib.auth import views as auth_views
|
|
import django_lcore
|
|
|
|
from . import views
|
|
|
|
app_name = 'lambdainst'
|
|
|
|
urlpatterns = [
|
|
path('login', auth_views.LoginView.as_view(), name='login'),
|
|
path('discourse_login', views.discourse_login, name='discourse_login'),
|
|
path('logout', views.logout, name='logout'),
|
|
path('signup', views.signup, name='signup'),
|
|
|
|
path('settings', views.settings, name='account_settings'),
|
|
path('config', views.config),
|
|
path('config_dl', django_lcore.views.openvpn_dl),
|
|
path('wireguard', views.wireguard),
|
|
path('wireguard/new', views.wireguard_new, name='wireguard_new'),
|
|
path('gift_code', views.gift_code),
|
|
path('trial', views.trial),
|
|
path('', views.index, name='index'),
|
|
]
|