Add services and SSH keys.
authorRadek Czajka <rczajka@rczajka.pl>
Sat, 30 Mar 2019 21:49:27 +0000 (22:49 +0100)
committerRadek Czajka <rczajka@rczajka.pl>
Sat, 30 Mar 2019 21:49:27 +0000 (22:49 +0100)
commit5c901ee485c3abdf11dec71bdb7534f1f6a9eaa9
treeaf3edae3e8cf852e5f18678febf98789f5ce702e
parent3a65fcbfa423d5627e41c2f9e17c464d4a594087
Add services and SSH keys.
32 files changed:
src/accounts/admin.py [deleted file]
src/accounts/migrations/0003_auto_20190330_1311.py [new file with mode: 0644]
src/accounts/models.py
src/accounts/templates/account/base.html
src/cas/settings.py
src/cas/static/css/main.css
src/cas/urls.py
src/services/__init__.py [new file with mode: 0644]
src/services/admin.py [new file with mode: 0644]
src/services/apps.py [new file with mode: 0644]
src/services/migrations/0001_initial.py [new file with mode: 0644]
src/services/migrations/__init__.py [new file with mode: 0644]
src/services/models.py [new file with mode: 0644]
src/services/templates/services/ssh_authorized_keys.txt [new file with mode: 0644]
src/services/templatetags/__init__.py [new file with mode: 0644]
src/services/templatetags/services.py [new file with mode: 0644]
src/services/tests.py [new file with mode: 0644]
src/services/urls.py [new file with mode: 0644]
src/services/views.py [new file with mode: 0644]
src/ssh_keys/__init__.py [new file with mode: 0644]
src/ssh_keys/admin.py [new file with mode: 0644]
src/ssh_keys/apps.py [new file with mode: 0644]
src/ssh_keys/forms.py [new file with mode: 0644]
src/ssh_keys/migrations/0001_initial.py [new file with mode: 0644]
src/ssh_keys/migrations/__init__.py [new file with mode: 0644]
src/ssh_keys/models.py [new file with mode: 0644]
src/ssh_keys/templates/ssh_keys/base.html [new file with mode: 0644]
src/ssh_keys/templates/ssh_keys/sshkey_add.html [new file with mode: 0644]
src/ssh_keys/templates/ssh_keys/sshkey_confirm_delete.html [new file with mode: 0644]
src/ssh_keys/templates/ssh_keys/sshkey_list.html [new file with mode: 0644]
src/ssh_keys/urls.py [new file with mode: 0644]
src/ssh_keys/views.py [new file with mode: 0644]