forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-01-23 20:16:53 +02:00
parent 869e171d00
commit 76679ce4b4
4 changed files with 12 additions and 4 deletions

View File

@ -162,7 +162,7 @@
<a class="nav-link" href="{{v.url}}"><i class="fas fa-user-circle fa-fw mr-3"></i>@{{v.username}}</a> <a class="nav-link" href="{{v.url}}"><i class="fas fa-user-circle fa-fw mr-3"></i>@{{v.username}}</a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a class="nav-link {% if v.notifications_count %}position-relative{% endif %}" href="/notifications{% if not v.not_post_notifications_count %}?posts=true{% endif %}"> <a class="nav-link" href="/notifications{% if v.notifications_count and not v.not_post_notifications_count %}?posts=true{% endif %}">
<i class="fas fa-envelope fa-fw mr-3"></i>Inbox <i class="fas fa-envelope fa-fw mr-3"></i>Inbox
{% if v.notifications_count %} {% if v.notifications_count %}
<i class="fas fa-circle text-danger position-absolute" style="left: 19px; top: 5px; font-size: 10px;{% if not v.not_post_notifications_count %}color:blue!important{% endif %}"></i> <i class="fas fa-circle text-danger position-absolute" style="left: 19px; top: 5px; font-size: 10px;{% if not v.not_post_notifications_count %}color:blue!important{% endif %}"></i>

View File

@ -684,7 +684,7 @@
</div> </div>
{% if u.song%} {% if u.song %}
{% if v and v.id == u.id %} {% if v and v.id == u.id %}
<div id="v_username" class="d-none">{{v.username}}</div> <div id="v_username" class="d-none">{{v.username}}</div>
{% else %} {% else %}

View File

@ -105,7 +105,11 @@
</div> </div>
{% if u.song %} {% if u.song %}
<div id="uid" class="d-none">{{u.id}}</div> {% if v and v.id == u.id %}
<div id="v_username" class="d-none">{{v.username}}</div>
{% else %}
<div id="u_username" class="d-none">{{u.username}}</div>
{% endif %}
{% endif %} {% endif %}
{% if v %} {% if v %}

View File

@ -32,7 +32,11 @@
</div> </div>
{% if u.song %} {% if u.song %}
<div id="uid" class="d-none">{{u.id}}</div> {% if v and v.id == u.id %}
<div id="v_username" class="d-none">{{v.username}}</div>
{% else %}
<div id="u_username" class="d-none">{{u.username}}</div>
{% endif %}
{% endif %} {% endif %}
{% endblock %} {% endblock %}