Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sauerburger-keys
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Frank Sauerburger
sauerburger-keys
Commits
b980dfd4
Verified
Commit
b980dfd4
authored
4 years ago
by
Frank Sauerburger
Browse files
Options
Downloads
Patches
Plain Diff
Add logout route
parent
1238f509
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!12
Resolve "Login/Logout"
Pipeline
#7629
waiting for manual action
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
app/keys_home/templates/keys_home/base.html
+18
-9
18 additions, 9 deletions
app/keys_home/templates/keys_home/base.html
app/keys_home/urls.py
+2
-1
2 additions, 1 deletion
app/keys_home/urls.py
app/keys_home/views.py
+9
-1
9 additions, 1 deletion
app/keys_home/views.py
with
29 additions
and
11 deletions
app/keys_home/templates/keys_home/base.html
+
18
−
9
View file @
b980dfd4
...
...
@@ -42,16 +42,25 @@
<i
class=
"fas fa-network-wired"
></i>
PKI
</a>
</li>
{% if request.user.is_anonymous %}
<li
class=
"navbar-login"
>
{% if request.user.is_anonymous %}
<a
href=
""
>
<i
class=
"fas fa-sign-in-alt"
></i>
Login
</a>
{% else %}
<a
href=
""
>
<i
class=
"fas fa-user"
></i>
{{ request.user.username }}
</a>
{% endif %}
<a
href=
"{% url 'login' %}"
>
<i
class=
"fas fa-sign-in-alt"
></i>
Login
</a>
</li>
{% else %}
<li
class=
"nav-item dropdown"
>
<a
class=
"nav-link dropdown-toggle"
href=
"#"
id=
"navbar-user"
role=
"button"
data-toggle=
"dropdown"
aria-haspopup=
"true"
aria-expanded=
"false"
>
{{ request.user }}
</a>
<div
class=
"dropdown-menu dropdown-menu-right"
aria-labelledby=
"navbar-user"
>
{% if request.user.is_staff %}
<a
class=
"dropdown-item"
href=
"/admin"
>
Admin
</a>
{% endif %}
<a
class=
"dropdown-item"
href=
"/logout"
>
Logout
</a>
</div>
</li>
{% endif %}
</li>
</ul>
</div>
...
...
This diff is collapsed.
Click to expand it.
app/keys_home/urls.py
+
2
−
1
View file @
b980dfd4
...
...
@@ -20,5 +20,6 @@ from . import views
urlpatterns
=
[
path
(
""
,
views
.
home
,
name
=
"
home
"
),
path
(
'
login/
'
,
auth_views
.
LoginView
.
as_view
()),
path
(
'
login/
'
,
auth_views
.
LoginView
.
as_view
(),
name
=
"
login
"
),
path
(
'
logout/
'
,
views
.
logout
,
name
=
'
logout
'
),
]
This diff is collapsed.
Click to expand it.
app/keys_home/views.py
+
9
−
1
View file @
b980dfd4
from
django.shortcuts
import
render
from
django.shortcuts
import
render
,
redirect
from
django.urls
import
reverse
from
django.views.decorators.http
import
require_safe
import
django.contrib.auth
as
auth
@require_safe
def
home
(
request
):
return
render
(
request
,
"
keys_home/home.html
"
)
def
logout
(
request
):
if
request
.
user
.
is_authenticated
:
auth
.
logout
(
request
)
return
redirect
(
reverse
(
"
home
"
))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment