fnp
/
cas.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Nicer for admin.
[cas.git]
/
src
/
ssh_keys
/
urls.py
1
from django.urls import path
2
from . import views
3
4
5
urlpatterns = [
6
path('', views.SSHKeysView.as_view(), name='ssh_keys'),
7
path('<int:pk>/delete/', views.DeleteSSHKeyView.as_view(), name='ssh_keys_delete'),
8
path('add/', views.AddSSHKeyView.as_view(), name='ssh_keys_add'),
9
10
]