-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding user picture and username to navbar.
When the user is logged into Hotails, they'll see their profile picture, and their username in every page on Hotails on the navbar. Signed-off-by: Ofir Matasas <[email protected]> Signed-off-by: tamirmatok <[email protected]>
- Loading branch information
1 parent
b0145b1
commit d55e838
Showing
8 changed files
with
121 additions
and
36,760 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
from daycare.models import DayCare, Image | ||
from dogowner.models import DogOwner | ||
|
||
|
||
def navbar_extras(request): | ||
navbar_picture_url = navbar_name = None | ||
if request.user.is_authenticated: | ||
if DogOwner.objects.filter(user=request.user).exists(): | ||
dog_owner = DogOwner.objects.filter(user=request.user).first() | ||
navbar_picture_url = dog_owner.dog_picture_url | ||
navbar_name = dog_owner.first_name + ' ' + dog_owner.last_name | ||
|
||
elif DayCare.objects.filter(user=request.user).exists(): | ||
daycare = DayCare.objects.filter(user=request.user).first() | ||
navbar_picture_url = Image.objects.filter(daycare_id=daycare).first().url | ||
navbar_name = daycare.name | ||
context = { | ||
'navbar_picture_url': navbar_picture_url, | ||
'navbar_name': navbar_name, | ||
} | ||
return context |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,36 +12,43 @@ | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" | ||
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="{% static 'css/sidebar.css' %}"> | ||
{% block stylesheets %} | ||
{% endblock %} | ||
</head> | ||
<header> | ||
<nav class="navbar navbar-expand-lg navbar-light bg-dark"> | ||
<nav class="navbar navbar-expand-lg navbar-light bg-dark" style="padding: 0 10px 0 10px;"> | ||
<a class="navbar-brand" href="..\"> | ||
<img src="..\..\..\static\images\Hotails-logo-smaller.png" style="width:50px; height:50px;" class="d-inline-block align-top" loading="lazy"></a> | ||
<button class="navbar-toggler" type="button" data-target="#navbarText" | ||
aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation"> | ||
</button> | ||
<ul class="navbar-nav mr-auto"> | ||
{% if request.user.is_authenticated %} | ||
<li class="nav-item"><a class="nav-link text-white" href="">Profile</a></li> | ||
<li class="nav-item"><a class="nav-link text-white" href="">Orders</a></li> | ||
<li class="nav-item"><a class="nav-link text-white" href="">Search</a></li> | ||
<li class="nav-item"><a class="nav-link text-white" href="">Chats</a></li> | ||
{% endif %} | ||
<li class="nav-item"><a class="nav-link text-white" href="/about">About</a></li> | ||
</ul> | ||
<img src="{% static 'images/Hotails-logo-smaller.png' %}" style="width:50px; height:50px;" class="d-inline-block align-top" loading="lazy"> | ||
</a> | ||
<button class="navbar-toggler" type="button" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation"></button> | ||
<ul class="navbar-nav mr-auto"> | ||
{% if request.user.is_authenticated %} | ||
<li class="nav-item"><a class="nav-link text-white" href="">Profile</a></li> | ||
<li class="nav-item"><a class="nav-link text-white" href="">Orders</a></li> | ||
<li class="nav-item"><a class="nav-link text-white" href="">Search</a></li> | ||
<li class="nav-item"><a class="nav-link text-white" href="">Chats</a></li> | ||
{% endif %} | ||
<li class="nav-item"><a class="nav-link text-white" href="/about">About</a></li> | ||
</ul> | ||
{% if request.user.is_authenticated %} | ||
<ul class="nav navbar-nav navbar-right"> | ||
<li class="nav-item"><a class="nav-link text-white" style="font-size:1.3rem" href="/logout">Logout</a></li> | ||
<li class="nav-item"><img src="{{ navbar_picture_url }}" alt="{{ name }} image" class="card-img-top sidebar-profile-img"></li> | ||
<li class="nav-item"> | ||
<span id="welcomeMsg">Welcome, {{ navbar_name }}!</span><a class="nav-link" id="logoutHref" href="/logout">Logout</a> | ||
</li> | ||
</ul> | ||
{% endif %} | ||
</nav> | ||
</header> | ||
|
||
<body> | ||
{% block content %} | ||
{% endblock %} | ||
<div class="row"> | ||
<div class="col-12 col-lg-12"> | ||
{% block content %} | ||
{% endblock %} | ||
</div> | ||
</div> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from django.urls import path | ||
from django.contrib.auth import views as auth_views | ||
from . import views | ||
|
||
urlpatterns = [ | ||
|
||
path('', views.index, name='index'), | ||
path('homepage/', views.homepage, name='homepage'), | ||
path('login/', auth_views.LoginView.as_view(template_name='main/login.html', | ||
redirect_authenticated_user=True), name='login'), | ||
path('logout/', views.logout_view, name='logout') | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.