Fixed about editor showing when the user lacks the proper permissions.
This commit is contained in:
parent
9b714d6b9b
commit
e6be1b3471
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@
|
||||||
|
|
||||||
<div class="profile__container__main">
|
<div class="profile__container__main">
|
||||||
|
|
||||||
{% if is_editing or profile.user_about_content|length > 0 %}
|
{% if (is_editing and perms.edit_about) or profile.user_about_content|length > 0 %}
|
||||||
<div class="container container--new profile__about" id="about">
|
<div class="container container--new profile__about" id="about">
|
||||||
<div class="container__title profile__about__title">
|
<div class="container__title profile__about__title">
|
||||||
About {{ profile.username }}
|
About {{ profile.username }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue