diff --git a/multi_op/templates/multi_op/aff_room_state.html b/multi_op/templates/multi_op/aff_room_state.html
index 57205953..de25171b 100644
--- a/multi_op/templates/multi_op/aff_room_state.html
+++ b/multi_op/templates/multi_op/aff_room_state.html
@@ -51,9 +51,9 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% if room.port_set.all %}AURORE{% else %}{% trans "Other operator" %}{% endif %} |
{% if room.adherent %}{{ room.adherent }}{% else %} {% trans "Aucun" %}{% endif %} |
{{ room.details }} |
- {% if room.user.is_adherent %}{{ room.user.end_adhesion }}{% else %}{% trans "Not a member" %}{% endif %} |
+ {% if room.adherent.is_adherent %}{{ room.adherent.end_adhesion }}{% else %}{% trans "Not a member" %}{% endif %} |
- {% if room.user.has_access == True %}
+ {% if room.adherent.has_access == True %}
{% trans "Active" %}
{% else %}
{% trans "Disabled" %}
|