Fixed minor bugs
This commit is contained in:
parent
a8a3382f15
commit
afb57ef077
1
app.py
1
app.py
@ -276,6 +276,7 @@ def profile():
|
||||
name=current_user.name,
|
||||
email=current_user.email,
|
||||
profile_image_url=current_user.profile_image,
|
||||
title="Profil",
|
||||
)
|
||||
|
||||
|
||||
|
||||
@ -1,8 +1,10 @@
|
||||
{% extends 'layouts/main.html' %}
|
||||
|
||||
{% block content %}
|
||||
<h1><img class="avatar avatar-xl" src="{{user.profile_image}}"/>
|
||||
{{ title }}</h1>
|
||||
<h1>
|
||||
{% if (current_user.is_authenticated) %}<img class="avatar avatar-xl" src="{{user.profile_image}}"/>{% endif %}
|
||||
{{ title }}
|
||||
</h1>
|
||||
<h3>{{ utc_dt }}</h3>
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user