8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-20 09:32:29 +00:00

Display connection state for luser

This commit is contained in:
Gabriel Detraz 2019-09-20 21:45:48 +02:00 committed by klafyvel
parent 6617d6a000
commit 745a30280c

View file

@ -187,9 +187,12 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<div class="col-md-6">
<dt>{% trans "Room" %}</dt>
<dd>
{{ users.room }} {% can_view_all Port %}{% if users.room.port_set.all %} /
{{ users.room.port_set.all|join:", " }} {% endif %}{% acl_end %}
</dd>
{{ users.room }} {% if users.room.port_set.all %}{% can_view_all Port %}/
{{ users.room.port_set.all|join:", " }} {% acl_else %}
<i class="text-success">{% trans "Connected" %}</i>{% acl_end %}
{% else %}{% if users.room %}<i class="text-danger">{% trans "Pending connection..." %}</i>{% endif %}
{% endif %}
</dd>
</div>
<div class="col-md-6">
@ -222,7 +225,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% if users.end_adhesion != None %}
<dd><i class="text-success">{{ users.end_adhesion }}</i></dd>
{% else %}
<dd><i class="text-danger">{% trans "Not a member" %}</i></dd>
<dd><i class="text-danger">{% trans "not a member" %}</i></dd>
{% endif %}
</div>